Skip to content

Instantly share code, notes, and snippets.

@johnallers
Forked from kurokikaze/gist:350fe1713591641b3b42
Last active October 5, 2018 15:13
Show Gist options
  • Save johnallers/109835ead878080cd41def0a6f9769a9 to your computer and use it in GitHub Desktop.
Save johnallers/109835ead878080cd41def0a6f9769a9 to your computer and use it in GitHub Desktop.
install chrome from powershell
$Path = $env:TEMP; $Installer = "chrome_installer.exe"; Invoke-WebRequest "https://dl.google.com/chrome/install/latest/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