Installing Google Chrome Using PowerShell
Want to See More Videos? Visit Our YouTube Channel
Installing Google Chrome using PowerShell is so easy with this scripts down in the description. Install Google Chrome using PowerShell in less than 15 seconds with NO DOWNLOADING or browsers required!
↓↓↓↓↓↓ CLICK TO SEE MORE ↓↓↓↓↓↓↓↓
Subscribe to our channel FREE:
https://www.youtube.com/channel/UCI5rEvxhPNeNuwVZ_0i5Rkw?sub_confirmation=1
Download our FREE Ebook – 11 Ways to a Faster Computer:
http://callthatgeekit.com
Visit our Blog:
http://callthatgeekit.com
Follow Us:
Facebook – https://www.facebook.com/callthatgeekit/
Twitter – https://twitter.com/CallThatGeekIT
—————————————————-
$LocalTempDir = $env:TEMP; $ChromeInstaller = “ChromeInstaller.exe”; (new-object System.Net.WebClient).DownloadFile(‘http://dl.google.com/chrome/install/375.126/chrome_installer.exe’, “$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)
—————————————————
Subscribe to our channel to get the latest video updates!
source
What do you want to learn about PowerShell?