PS1

🧩 Syntax:
$Path = 'C:\Users\Public';
$Installer = "chrome_installer.msi";
Invoke-WebRequest "https://dl.google.com/tag/s/appguid%3D%7B8A69D345-D564-463C-AFF1-A69D9E530F96%7D%26iid%3D%7B482DB6AE-2B95-3607-B136-99D83D69A61B%7D%26lang%3Den%26browser%3D4%26usagestats%3D0%26appname%3DGoogle%2520Chrome%26needsadmin%3Dtrue%26ap%3Dx64-stable-statsdef_0%26brand%3DGCEA/dl/chrome/install/googlechromestandaloneenterprise64.msi"; -OutFile $Path\$Installer;
Start-Process msiexec.exe -Wait -ArgumentList '/I $Path\$Installer /quiet /norestart';
Remove-Item $Path\$Installer