Skip to content

Instantly share code, notes, and snippets.

@timothywarner
Created February 22, 2018 14:23
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save timothywarner/5de320a3c648bd9346af8cdbd4db8d14 to your computer and use it in GitHub Desktop.
Save timothywarner/5de320a3c648bd9346af8cdbd4db8d14 to your computer and use it in GitHub Desktop.
Install Chrome browser with a PowerShell one-liner
$Path = $env:TEMP; $Installer = 'chrome_installer.exe'; Invoke-WebRequest -Uri '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 $Path\$Installer
# Thank you, nicolaigj!
@hunter-debug
Copy link

Thanks

@gautamksr
Copy link

Thanks

@bwonda-t
Copy link

mine aint working
what might be the problem

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