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