From 87fa95250bbdf45f1eef4e20928fb18674da8678 Mon Sep 17 00:00:00 2001 From: Andre Hofmeister <9199345+HofmeisterAn@users.noreply.github.com> Date: Mon, 21 Mar 2022 18:51:07 +0100 Subject: [PATCH] [Windows] Use Chrome standalone installer (#5203) (#5252) --- images/win/scripts/Installers/Install-Chrome.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/images/win/scripts/Installers/Install-Chrome.ps1 b/images/win/scripts/Installers/Install-Chrome.ps1 index 790ec09f..756c7321 100644 --- a/images/win/scripts/Installers/Install-Chrome.ps1 +++ b/images/win/scripts/Installers/Install-Chrome.ps1 @@ -4,9 +4,9 @@ ################################################################################ # Download and install latest Chrome browser -$ChromeInstallerFile = "chrome_installer.exe" -$ChromeInstallerUrl = "https://dl.google.com/chrome/install/375.126/${ChromeInstallerFile}" -Install-Binary -Url $ChromeInstallerUrl -Name $ChromeInstallerFile -ArgumentList ("/silent", "/install") +$ChromeInstallerFile = "googlechromestandaloneenterprise64.msi" +$ChromeInstallerUrl = "https://dl.google.com/tag/s/dl/chrome/install/${ChromeInstallerFile}" +Install-Binary -Url $ChromeInstallerUrl -Name $ChromeInstallerFile -ArgumentList @() # Prepare firewall rules Write-Host "Adding the firewall rule for Google update blocking..."