Como instalar Google Chrome en Windows Server 2012 desde Shell

Para instalar Google Chrome mediante el consola de comandos Shell solo es necesario ejecutar el siguiente comando:

 

$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

 

¿Fue útil la respuesta? 2 Los Usuarios han Encontrado Esto Útil (2 Votos)