Created
February 22, 2022 08:50
-
-
Save dieeegue/8a39eb5a526e1b3f9f368024dda5d546 to your computer and use it in GitHub Desktop.
Delete Windows %temp% files | Batch Script
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 | |
cd /D %temp% | |
for /d %%D in (*) do rd /s /q "%%D" | |
del /f /q * | |
exit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks! <3