How to install Google Chrome on Windows Server 2012 from Shell

To install Google Chrome using the Shell command console, it is only necessary to execute the following command:

 

$Path = $env:TEMP; $Installer = “chrome_installer.exe”; Invoke-WebRequest “http://dl.google.com/chrome/chrome_installer.exe" -OutFile $Path\$Installer; Start-Process -FilePath $Path\$Installer -Args “/silent /install” -Verb RunAs -Wait; Remove-Item $Path\$Installer

 

آیا این پاسخ به شما کمک کرد؟ 2 کاربر این را مفید یافتند (2 نظرات)