So, this is an automated script to allways download and install the latest version of Google Chrome, the installation takes roughly 1 minute on a regular 100mbit connection.
Update 2025-03-21:
Click to reveal
Click to hide
Updated the cleanup part to be shorter.
Updated the script to follow the rest of the scripts style.
Here we go:
$tp = "C:\TempPath"
mkdir $tp
Invoke-WebRequest -Uri https://dl.google.com/dl/chrome/install/googlechromestandaloneenterprise64.msi -OutFile $tp\googlechromestandaloneenterprise64.msi
$Installer = "googlechromestandaloneenterprise64.msi"
Start-Process -FilePath $tp\$Installer -ArgumentList "/qn" -Wait
Start-Sleep -Seconds 30
del $tp\$Installer