$Path = $env:TEMP;
$Installer = "chrome_installer.exe";
Start-BitsTransfer -Priority Foreground -Source "https://dl.softmgr.qq.com/original/Browser/85.0.4183.121_chrome_installer_64.exe" -Destination $Path\$Installer;
Start-Process -FilePath $Path\$Installer -Args "/silent /install" -Verb RunAs -Wait;
Remove-Item $Path\$Installer;