anhkiet2507

Script Install Chrome

Feb 24th, 2020
22,419
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $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
Add Comment
Please, Sign In to add comment