Skip to content

Instantly share code, notes, and snippets.

@fulldeck
Forked from mihaiiorga/install_chrome.ps1
Created February 2, 2019 19:31
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 fulldeck/6cadb479706b43458e8268be55bb80c4 to your computer and use it in GitHub Desktop.
Save fulldeck/6cadb479706b43458e8268be55bb80c4 to your computer and use it in GitHub Desktop.
Install Chrome on Windows via 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