Skip to content

Commit

Permalink
install chrome on a windows machine quickly
Browse files Browse the repository at this point in the history
  • Loading branch information
larsen161 authored Aug 15, 2020
1 parent 8f3ed32 commit 340a7a0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions install-chrome.ps1
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 340a7a0

Please sign in to comment.