Skip to content

Instantly share code, notes, and snippets.

View dansmith65's full-sized avatar

Dan Smith dansmith65

View GitHub Profile
@dansmith65
dansmith65 / Install-GoogleChrome.ps1
Last active September 25, 2019 17:55 — forked from kurokikaze/gist:350fe1713591641b3b42
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