workflows / commandos /corgoogle.ps1
Luis-Filipe's picture
Upload 94 files
04da94d verified
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