Facebook
From Au, 5 Months ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 129
  1. # Cierra Google Chrome
  2. Stop-Process -Name chrome -Force
  3.  
  4. # Borra datos y caché de Chrome
  5. Remove-Item -Path "$env:LOCALAPPDATA\Google\Chrome\User Data\Default\Cache\*" -Force
  6. Remove-Item -Path "$env:LOCALAPPDATA\Google\Chrome\User Data\Default\Cookies" -Force
  7. Remove-Item -Path "$env:LOCALAPPDATA\Google\Chrome\User Data\Default\History" -Force
  8. Remove-Item -Path "$env:LOCALAPPDATA\Google\Chrome\User Data\Default\Login Data" -Force
  9. Remove-Item -Path "$env:LOCALAPPDATA\Google\Chrome\User Data\Default\Login Data-journal" -Force
  10.  
  11. # Reinicia Google Chrome
  12. Start-Process "chrome.exe"
  13.