Skip to content

Instantly share code, notes, and snippets.

@mihaiiorga
mihaiiorga / install_chrome.ps1
Last active February 2, 2019 19:31
Install Chrome on Windows via PowerShell
$Path = $env:TEMP; $Installer = "chrome_installer.exe"; Invoke-WebRequest "https://dl.google.com/chrome/install/latest/chrome_installer.exe" -OutFile $Path$Installer; Start-Process -FilePath $Path$Installer -Args "/silent /install" -Verb RunAs -Wait; Remove-Item $Path$Installer