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.
Nesta página do site você pode assistir ao vídeo on-line Install Chrome on Windows Server using PowerShell duração hora minuto segundo em boa qualidade , que foi baixado pelo usuário LessonZilla 30 Abril 2022, compartilhe o link com seus amigos e conhecidos, no youtube este vídeo já foi visto 385 vezes e gostou 4 espectadores. Boa visualização!