Forked from kurokikaze/gist:350fe1713591641b3b42
Last active
September 25, 2019 17:55
-
-
Save dansmith65/4c012304ed96596dbbcad8e4a15f7583 to your computer and use it in GitHub Desktop.
install chrome from powershell
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$InstallerPath = Join-Path $env:TEMP "chrome_installer.exe"; Invoke-WebRequest "https://dl.google.com/chrome/install/latest/chrome_installer.exe" -OutFile $InstallerPath; Start-Process -FilePath $InstallerPath -Args "/silent /install" -Verb RunAs -Wait; Remove-Item $InstallerPath |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment