Chrome安装错误:“Egads!安装失败”
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Chrome安装错误:“Egads!安装失败”相关的知识,希望对你有一定的参考价值。
我正在尝试使用PowerShell在我的Windows 7计算机上安装Chrome。
下载成功但安装失败,但失败并出现错误:
Egads!安装失败
我找到了一些手动处理来解决程序文件中的删除Chrome文件夹等问题。
$saveFilePath="$PSScriptRootchrome_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;
答案
您使用的参数不正确。您需要使用“/ SILENT / INSTALL”而不是“/ QUIET”。
有关更多信息,请参阅此处:https://superuser.com/questions/337210/how-can-i-silently-install-google-chrome
以上是关于Chrome安装错误:“Egads!安装失败”的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Chrome 33+ 中通过 GPO 自动安装 Chrome 扩展(Chrome 错误或 GPO 安装的扩展的未记录更改?)
工具-chrome相关-安装crx包及错误解决(99.3.2)