File size: 334 Bytes
04da94d | 1 2 3 4 5 6 7 8 9 | Write-Output "Fechando o Google Chrome..."
Stop-Process -Name "chrome" -Force -ErrorAction SilentlyContinue
Write-Output "Limpando a cache do Google Chrome..."
Remove-Item "$env:LOCALAPPDATA\Google\Chrome\User Data\Default\Cache\*" -Recurse -Force -ErrorAction SilentlyContinue
Write-Output "Cache limpa com sucesso!"
Pause
|