Skip to content

Instantly share code, notes, and snippets.

@dansmith65
Forked from kurokikaze/gist:350fe1713591641b3b42
Last active September 25, 2019 17:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save dansmith65/4c012304ed96596dbbcad8e4a15f7583 to your computer and use it in GitHub Desktop.
Save dansmith65/4c012304ed96596dbbcad8e4a15f7583 to your computer and use it in GitHub Desktop.
install chrome from powershell
$InstallerPath = Join-Path $env:TEMP "chrome_installer.exe"; Invoke-WebRequest "https://dl.google.com/chrome/install/latest/chrome_installer.exe" -OutFile $InstallerPath; Start-Process -FilePath $InstallerPath -Args "/silent /install" -Verb RunAs -Wait; Remove-Item $InstallerPath
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment