Skip to content
Snippets Groups Projects
Unverified Commit 12c11e45 authored by Jan's avatar Jan Committed by GitHub
Browse files

Added scripts and additional files.

parent 318380da
No related branches found
No related tags found
No related merge requests found
Showing
with 53 additions and 0 deletions
@echo off
del /Q /F %localappdata%\Temp\*
echo Outlook Temp folder cleared.
pause
exit
\ No newline at end of file
@echo off
robocopy "C:\Windows\SysWOW64" "%localappdata%\Temp" EdgeManager.dll
ren "%localappdata%\Temp\EdgeManager.dll" "edgegdi.dll"
robocopy "%localappdata%\Temp" "C:\Windows\SysWOW64" "edgegdi.dll"
del "%localappdata%\Temp\edgegdi.dll"
robocopy "C:\Windows\System32" "%localappdata%\Temp" EdgeManager.dll
ren "%localappdata%\Temp\EdgeManager.dll" "edgegdi.dll"
robocopy "%localappdata%\Temp" "C:\Windows\System32" "edgegdi.dll"
del "%localappdata%\Temp\edgegdi.dll"
echo Done.
pause
exit
@echo off
pushd "C:\Users" && (
for /f "tokens=*" %%a in ('dir /A:D /b') do (
if not "%%a" == "Public" if not "%%a" == "All Users" if not "%%a" == "Default User" (
pushd "C:\Users\%%a\AppData\Local\Microsoft\Windows" && (
rd /s /q WebCache
del /q /f WebCacheLock.dat
)
popd
)
)
popd
)
echo Done.
pause
exit
@echo off
net stop spooler
pushd "%~dp0\ScriptFiles\Printer not installable" && (
reg import "Printer Spooler Registry.reg"
robocopy spool C:\Windows\System32\spool *
)
popd
net start spooler
echo Done.
pause
exit
\ No newline at end of file
@echo off
rd /s /q "%localappdata%\Packages\windows.immersivecontrolpanel_cw5n1h2txyewy"
robocopy /e "C:\Users\Administrator\AppData\Local\Packages\windows.immersivecontrolpanel_cw5n1h2txyewy" "%localappdata%\Packages\windows.immersivecontrolpanel_cw5n1h2txyewy"
echo Done.
pause
exit
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File added
File added
File added
File added
File added
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment