How to install chrome with Powershell?
Quick way to install chrome on windows with Powershell?
Launch the Powershell and run below script or save it as .ps1 and bypass security using this article.
Script :
$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
… Read the rest