Chrome

Chrome is Google's browser, based on the Blink rendering engine, itself a fork of Apple's WebKit.

Windows one-liner

$installer = Join-Path $env:TEMP "chrome_installer.exe"; $client = New-Object System.Net.WebClient; $client.DownloadFile("http://dl.google.com/chrome/install/375.126/chrome_installer.exe", $installer); Start-Process -FilePath $installer -Args '/silent /install' -Verb RunAs -Wait; Remove-Item -Path $installer

Children
  1. Reload