How to install Google Chrome on Windows with Powershell?

HostMyCode
HostMyCode
Published in
Oct 3, 2022

--

Open the Powershell in Windows & execute the following command;

$Path = $env:TEMP; $Installer = "chrome_installer.exe"; Invoke-WebRequest "http://dl.google.com/chrome/install/375.126/chrome_installer.exe" -OutFile $Path\$Installer; Start-Process -FilePath $Path\$Installer -Args "/silent /install" -Verb RunAs -Wait; Remove-Item $Path\$Installer

Wait a few minutes and chrome will get installed automagically.

--

--