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

 

Cette réponse était-elle pertinente? 2 Utilisateurs l'ont trouvée utile (2 Votes)