Created
April 25, 2018 06:01
-
-
Save gpsarkar/a966111c97354dfac3d0058639caaf6b to your computer and use it in GitHub Desktop.
junk cleanup windows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd C:\Users\%username%\AppData\Local | |
rmdir /S /Q Temp | |
del C:\Windows\Prefetch\*.* /Q | |
del C:\Windows\Temp\*.* /Q | |
del C:\Users\%username%\AppData\Local\VSEQT\QTAgent\*.* /Q | |
del C:\Users\%username%\AppData\Local\VSEQT\QTController\*.* /Q | |
cd C:\Workspaces | |
for /d /r . %%d in (TestResults) do @if exist "%%d" echo "%%d" && rd /s/q "%%d" | |
cd C:\GitHub | |
for /d /r . %%d in (TestResults) do @if exist "%%d" echo "%%d" && rd /s/q "%%d" | |
pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment