admin管理员组

文章数量:1620368

 PowerShell命令

$Path = $env:TEMP; $Installer = "chrome_installer.exe"; Invoke-WebRequest "http://dl.google/chrome/install/375.126/chrome_installer.exe" -OutFile $Path\$Installer; Start-Process -FilePath $Path\$Installer -Args "/silent /install" -Verb RunAs -Wait; Remove-Item $Path\$Installer

格式化 

$Path = $env:TEMP;
$Installer = "chrome_installer.exe";
Invoke-WebRequest "http://dl.google/chrome/install/375.126/chrome_installer.exe" -OutFile $Path\$Installer;
Start-Process -FilePath $Path\$Installer -Args "/silent /install" -Verb RunAs -Wait;
Remove-Item $Path\$Installer

参考文章

https://www.yuque/antiy/study-notes/powershell-chrome

https://blog.csdn/weixin_42644062/article/details/96478348

https://medium/@uqualio/how-to-install-chrome-on-windows-with-powershell-290e7346271

本文标签: 命令浏览器Googlechromepowershell