How to install chrome with Powershell?

Clear2all Professional Blog new

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

Leave a Reply

Your email address will not be published. Required fields are marked *