Monday, September 4, 2017

Install Chrome on Windows without starting Internet Explorer at all

This video is about how I install Google Chrome browser on Windows, without starting Internet Explorer at all!



The PowerShell script I used in this video is listed below.



--- COPY HERE ---

$url = "https://dl.google.com/chrome/install/375.126/chrome_installer.exe"
$output = "chrome_installer.exe"
$start_time = Get-Date

Invoke-WebRequest -Uri $url -OutFile $output
Write-Output "Time taken: $((Get-Date).Subtract($start_time).Seconds) second(s)"

.\chrome_installer.exe

--- END OF COPY ---


No comments:

Post a Comment