In this video, I'm showing you how to install Google Chrome on any Windows Server machine using PowerShell.
Steps
1. Open PowerShell as administrator
2. Copy paste the below script and hit Enter
3. Wait for a minute or two for the installation to complete
Script
$LocalTempDir = $env:TEMP; $ChromeInstaller = "ChromeInstaller.exe"; (new-object System.Net.WebClient).DownloadFile('http://dl.google.com/chrome/install/3..., "$LocalTempDir\$ChromeInstaller"); & "$LocalTempDir\$ChromeInstaller" /silent /install; $Process2Monitor = "ChromeInstaller"; Do { $ProcessesFound = Get-Process | ?{$Process2Monitor -contains $_.Name} | Select-Object -ExpandProperty Name; If ($ProcessesFound) { "Still running: $($ProcessesFound -join ', ')" | Write-Host; Start-Sleep -Seconds 2 } else { rm "$LocalTempDir\$ChromeInstaller" -ErrorAction SilentlyContinue -Verbose } } Until (!$ProcessesFound)
If you like this video, please give it a thumbs up, share with your friends and please show support by subscribing to my channel.
Thanks.
En esta página del sitio puede ver el video en línea Install Chrome on Windows Server using PowerShell de Duración hora minuto segunda en buena calidad , que subió el usuario LessonZilla 30 abril 2022, comparta el enlace con amigos y conocidos, en youtube este video ya ha sido visto 385 veces y le gustó 4 a los espectadores. Disfruta viendo!