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 |