Skip to content

Instantly share code, notes, and snippets.

@pmolchanov
Created July 6, 2016 14:20
Show Gist options
  • Save pmolchanov/c23d7eea0312e6871c9f43a7f85d2dcc to your computer and use it in GitHub Desktop.
Save pmolchanov/c23d7eea0312e6871c9f43a7f85d2dcc to your computer and use it in GitHub Desktop.
Silent chrome install via PowerShell
&{
(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