Skip to content

Instantly share code, notes, and snippets.

@diegue-exe
Created February 22, 2022 08:50
Show Gist options
  • Save diegue-exe/8a39eb5a526e1b3f9f368024dda5d546 to your computer and use it in GitHub Desktop.
Save diegue-exe/8a39eb5a526e1b3f9f368024dda5d546 to your computer and use it in GitHub Desktop.
Delete Windows %temp% files | Batch Script
@echo off
cd /D %temp%
for /d %%D in (*) do rd /s /q "%%D"
del /f /q *
exit
@alvaroroco
Copy link

Thanks! <3

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment