Skip to content

Instantly share code, notes, and snippets.

@charlie-x
Created November 1, 2019 20:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save charlie-x/b9c0e316154bd03d453ba89d1ae3f4a2 to your computer and use it in GitHub Desktop.
Save charlie-x/b9c0e316154bd03d453ba89d1ae3f4a2 to your computer and use it in GitHub Desktop.
chrome install with powershell
$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