Created
October 29, 2018 04:46
-
-
Save mattwoolnough/6b6b165469fbf4dbc512a6bfa1954f67 to your computer and use it in GitHub Desktop.
Chrome install one-liner
This file contains hidden or 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
$Path = $env:TEMP; $Installer = "chrome_installer.exe"; Invoke-WebRequest "https://dl.google.com/chrome/install/latest/chrome_installer.exe" -OutFile $Path$Installer; Start-Process -FilePath $Path$Installer -Args "/silent /install" -Verb RunAs -Wait; Remove-Item $Path$Installer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment