Install Chrome on Windows Server using PowerShell

Published: 30 April 2022
on channel: LessonZilla
385
4

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.


On this page of the site you can watch the video online Install Chrome on Windows Server using PowerShell with a duration of hours minute second in good quality, which was uploaded by the user LessonZilla 30 April 2022, share the link with friends and acquaintances, this video has already been watched 385 times on youtube and it was liked by 4 viewers. Enjoy your viewing!