Created
May 25, 2021 13:11
-
-
Save kilasuit/16bcdcc6b3a891ceb0f9102fbf242d78 to your computer and use it in GitHub Desktop.
Install-Chrome.ps1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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