Advertisement
mdestroy

Opera Cleaning

Aug 31st, 2016
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. #Batch script that cleans all Opera cookies, history
  2. @echo off
  3.  
  4. set DataDir=C:\Users\%USERNAME%\AppData\Local\Opera\Opera
  5. set DataDir2=C:\Users\%USERNAME%\AppData\Roaming\Opera\Opera
  6.  
  7. del /q /s /f "%DataDir%"
  8. rd /s /q "%DataDir%"
  9.  
  10. del /q /s /f "%DataDir2%"
  11. rd /s /q "%DataDir2%"
  12. pause
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement