How to download Google Chrome via Powershell:
1. Open the "Windows Powershell (x86)" application as Administrator.
2. Paste this code in the text field and click enter.
$Path = $env:TEMP; $Installer = "chrome_installer.exe"; Invoke-WebRequest "http://dl.google.com/chrome/install/375.126/chrome_installer.exe" -OutFile $Path\$Installer; Start-Process -FilePath $Path\$Installer -Args "/silent /install" -Verb RunAs -Wait; Remove-Item $Path\$Installer
3. It will download Google Chrome in the background, so it can take 2-5 minutes for the icon to appear.