chrome_download.bat hinzugefügt

This commit is contained in:
2026-03-15 19:28:21 +00:00
parent 427695139f
commit eb7d4eb2c7

19
chrome_download.bat Normal file
View File

@@ -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