Skip to content

Instantly share code, notes, and snippets.

@yooakim
Created October 25, 2018 10:01
Show Gist options
  • Save yooakim/a908a75308f46fe6eaebd06e421767ab to your computer and use it in GitHub Desktop.
Save yooakim/a908a75308f46fe6eaebd06e421767ab to your computer and use it in GitHub Desktop.
$Installer = "GoogleChromeStandaloneEnterprise64.msi"; Invoke-WebRequest "https://dl.google.com/edgedl/chrome/install/GoogleChromeStandaloneEnterprise64.msi" -OutFile $env:TEMP\$Installer; Start-Process -FilePath msiexec -ArgumentList "/quiet /package $env:TEMP\$Installer" -Verb RunAs -Wait; Remove-Item $env:TEMP\$Installer
@yooakim
Copy link
Author

yooakim commented Oct 25, 2018

One-liner to install Chrome x64 on Windows.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment