Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
install chrome from powershell
$InstallerPath = Join-Path $env:TEMP "chrome_installer.exe"; Invoke-WebRequest "https://dl.google.com/chrome/install/latest/chrome_installer.exe" -OutFile $InstallerPath; Start-Process -FilePath $InstallerPath -Args "/silent /install" -Verb RunAs -Wait; Remove-Item $InstallerPath
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment