Skip to content

Instantly share code, notes, and snippets.

@kilasuit
Created May 25, 2021 13:11
Show Gist options
  • Save kilasuit/16bcdcc6b3a891ceb0f9102fbf242d78 to your computer and use it in GitHub Desktop.
Save kilasuit/16bcdcc6b3a891ceb0f9102fbf242d78 to your computer and use it in GitHub Desktop.
Install-Chrome.ps1
Invoke-WebRequest https://dl.google.com/tag/s/dl/chrome/install/googlechromestandaloneenterprise64.msi -OutFile $env:TEMP\chrome.msi
Start-Process -FilePath $env:TEMP\chrome.msi -ArgumentList "/quiet /norestart" -Wait
Remove-Item $env:TEMP\chrome.msi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment