lys3rg1a

Cookie Cleaner - Batch

Dec 20th, 2011
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. @echo off
  2. rem batch system cleaner written by lys3rg1a
  3. rem first time scripting on a windows system in a while
  4. rem removes flash cookies and temporary files
  5. rem contact email: [email protected]
  6. dir /S/B %SystemDrive%\*.sol >> data.txt
  7. dir /S/B %SystemDrive%\*.tmp >> data.txt
  8. echo Y | FOR /F "tokens=1,* delims=: " %%j in (data.txt) do del "%%j:%%k"
  9. del data.txt
  10. echo cookies and temporary files removed, press enter to exit
  11. pause > null
  12. exit
Advertisement
Add Comment
Please, Sign In to add comment