Kurmak için PowerShell'i açın ve aşağıda ki kodu girin.
$Path = $env:TEMP; $Installer = “chrome_installer.exe”; Invoke-WebRequest “http://dl.google.com/chrome/chrome_installer.exe" -OutFile $Path$Installer; Start-Process -FilePath $Path$Installer -Args “/silent /install” -Verb RunAs -Wait; Remove-Item $Path$Installer
Kodu girdikten sonra otomatik olarak kurulum gerçekleşecektir.