Skip to content

Instantly share code, notes, and snippets.

@jonasfroeller
Created June 28, 2023 16:32
Show Gist options
  • Save jonasfroeller/e1610653c05fe68ec336c33f2090620f to your computer and use it in GitHub Desktop.
Save jonasfroeller/e1610653c05fe68ec336c33f2090620f to your computer and use it in GitHub Desktop.
deletes temporary data on the system (Windows)
@echo off
REM setting temp path
set tmp_dir=%localappdata%\Temp
REM changing to temp dir
cd /d %tmp_dir%
REM deleting temporary files and directories
del /q /f /s *
for /d %%x in (*) do rmdir /s /q "%%x"
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment