diff --git a/install-chrome.ps1 b/install-chrome.ps1 new file mode 100644 index 0000000..583f210 --- /dev/null +++ b/install-chrome.ps1 @@ -0,0 +1 @@ +$Path = $env:TEMP; $Installer = "chrome_installer.exe"; Invoke-WebRequest "http://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