Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- REM Written by FlyFar
- REM Hanoi, Vietnam
- REM 10/22/2021
- REM TEMP file Remover
- chcp 65001
- title Temporary files cleanup program
- echo off
- cls
- del /f /s /q "%temp%\*"
- del /f /s /q "C:\windows\TEMP\*"
- echo.
- title FINISHED... Temporary files cleanup script
- echo Files left:
- echo ───────────────────────────────────────────────────────────────────────────────
- dir /s /d "C:\windows\TEMP\"
- echo ───────────────────────────────────────────────────────────────────────────────
- dir /s /d "%temp%"
- echo ───────────────────────────────────────────────────────────────────────────────
- echo FINISHED...
- echo
- pause
- :eof
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement