Advertisement
mdestroy

Firefox Cleaning

Aug 31st, 2016
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. #Batch script that cleans all Firefox cookies, history
  2.  
  3. @echo off
  4.  
  5. set DataDir=C:\Users\%USERNAME%\AppData\Local\Mozilla\Firefox\Profiles
  6.  
  7. del /q /s /f "%DataDir%"
  8. rd /s /q "%DataDir%"
  9.  
  10. for /d %%x in (C:\Users\mdest\AppData\Roaming\Mozilla\Firefox\Profiles\*) do del /q /s /f %%x\*sqlite
  11. pause
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement