Google Chrome is a cross-platform web browser developed by Google. This browser was first released in 2008 for Microsoft Windows, then ported to Android, iOS, Linux, and macOS which made it the default browser in the operating system.
Please follow the following tutorial to install the Google Chrome browser quickly and easily
1. Search and Open “Windows PowerShell”
2. Copy, paste, and run installer command
$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)
3. Waiting installer process under 1-5 minute, and your chrome broswer ready to use
don’t forget to share this tutorial with your friends