Skip to content

Instantly share code, notes, and snippets.

@micksmix
Created November 13, 2018 07:05
Show Gist options
  • Save micksmix/6cdd1359be907e56555389191f438c96 to your computer and use it in GitHub Desktop.
Save micksmix/6cdd1359be907e56555389191f438c96 to your computer and use it in GitHub Desktop.
Batch file to clear out temp files on Windows
REM clrtmp.bat
@echo off
del "%TEMP%\*.*" /s /f /q
for /d %%d in (%TEMP%\*) do rmdir "%%d" /s /q
del "%WINDIR%\TEMP\*.*" /s /f /q
for /d %%d in (%WINDIR%\TEMP\*) do rmdir "%%d" /s /q
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment