Created
June 5, 2019 11:41
-
-
Save om-ganesh/8312997d27fc01027bbaa9ab73b47526 to your computer and use it in GitHub Desktop.
This file contains 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
@ECHO OFF | |
ECHO Deleting User temp files | |
DEL /S /Q /F "%TEMP%\*.*" | |
DEL /S /Q /F "%TMP%\*.*" | |
ECHO Deleting Local temp files | |
DEL /S /Q /F "%USERPROFILE%\Local Settings\Temp\*.*" | |
DEL /S /Q /F "%LOCALAPPDATA%\Temp\*.*" | |
ECHO Deleting Windows temp files | |
DEL /S /Q /F "%WINDIR%\temp\*.*" | |
FOR /D %%p IN ("%WINDIR%\Temp\*") DO RMDIR /S /Q "%%p" | |
ECHO Cleanup completed !!! | |
PAUSE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment