Created
July 6, 2016 14:20
-
-
Save pmolchanov/c23d7eea0312e6871c9f43a7f85d2dcc to your computer and use it in GitHub Desktop.
Silent chrome install via 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
&{ | |
(New-Object System.Net.WebClient).DownloadFile("http://dl.google.com/chrome/install/chrome_installer.exe", "$env:TEMP\chrome_installer.exe") | |
& "$env:TEMP\chrome_installer.exe" /silent /install | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment