Skip to content

Instantly share code, notes, and snippets.

View dhcgn's full-sized avatar

Daniel dhcgn

View GitHub Profile
@dhcgn
dhcgn / DownloadAndInstallChrome.ps1
Last active June 2, 2017 08:14 — forked from kurokikaze/gist:350fe1713591641b3b42
install chrome from powershell
$Path = $env:TEMP; `
$Installer = 'chrome_installer.exe'; `
Invoke-WebRequest 'http://dl.google.com/chrome/install/375.126/chrome_installer.exe' -OutFile $Path\$Installer; `
Start-Process -FilePath $Path\$Installer -Args "/silent /install" -Verb RunAs -Wait; `
Remove-Item $Path\$Installer