Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @echo off
- rem batch system cleaner written by lys3rg1a
- rem first time scripting on a windows system in a while
- rem removes flash cookies and temporary files
- rem contact email: [email protected]
- dir /S/B %SystemDrive%\*.sol >> data.txt
- dir /S/B %SystemDrive%\*.tmp >> data.txt
- echo Y | FOR /F "tokens=1,* delims=: " %%j in (data.txt) do del "%%j:%%k"
- del data.txt
- echo cookies and temporary files removed, press enter to exit
- pause > null
- exit
Advertisement
Add Comment
Please, Sign In to add comment