Skip to content

Instantly share code, notes, and snippets.

@techthoughts2
Created July 3, 2019 04:41
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 techthoughts2/721f23c27b54ffad9b3880859ea0ad5d to your computer and use it in GitHub Desktop.
Save techthoughts2/721f23c27b54ffad9b3880859ea0ad5d to your computer and use it in GitHub Desktop.
$P = $env:TEMP + '\chrome_installer.exe'; Invoke-WebRequest 'https://dl.google.com/chrome/install/latest/chrome_installer.exe' -OutFile $P; Start-Process -FilePath $P -Args '/silent /install' -Verb RunAs -Wait; Remove-Item $P
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment