Advertisement
mdestroy

Chrome Cleaning

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