Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save om-ganesh/8312997d27fc01027bbaa9ab73b47526 to your computer and use it in GitHub Desktop.
Save om-ganesh/8312997d27fc01027bbaa9ab73b47526 to your computer and use it in GitHub Desktop.
@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