Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nicolasguzca/b5116581e03e71c1964da901b729e9a7 to your computer and use it in GitHub Desktop.
Save nicolasguzca/b5116581e03e71c1964da901b729e9a7 to your computer and use it in GitHub Desktop.
$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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment