我正在尝试使用PowerShell在Windows 7计算机上安装Chrome。
下载成功,但安装失败,但失败,并显示以下错误:
老兄!安装失败
我找到了一些手动过程来解决该问题,例如在“程序文件”中删除Chrome文件夹。
$saveFilePath="$PSScriptRoot\chrome_installer.exe"
$url="https://dl.google.com/chrome/install/375.126/chrome_installer.exe"
$downloader = (new-object System.Net.WebClient)
$downloader.DownloadFile("$url", "$saveFilePath")
$process = Start-Process -FilePath "$saveFilePath" -ArgumentList "/quiet" -Wait -PassThru -ErrorAction Stop;
答案 0 :(得分:0)
您使用的参数不正确。您需要使用“ / SILENT / INSTALL”而不是“ / QUIET”。
有关更多信息,请参见此处:https://superuser.com/questions/337210/how-can-i-silently-install-google-chrome