gpt4 book ai didi

powershell - 使用 PowerShell 命令 Start-Process 安装 msi 时,出现退出代码 1603 错误

转载 作者:行者123 更新时间:2023-12-01 23:42:54 25 4
gpt4 key购买 nike

我们尝试使用以下脚本在 Windows 服务器上安装 MSI 文件,并且能够在 Windows 服务器上安装 MSI 文件。以下代码对于某些 MSI 文件工作正常,但对于其他文件则失败。退出代码为 1603。如果我们进行全新安装,它工作正常,但在尝试重新安装时,我们收到退出代码:1603 错误。所有服务的所有配置设置都相同。

作为mentioned on the Microsoft web site , 我们验证了以下条件和没有适用于我们的案例。

  • Windows Installer 正在尝试安装您的 PC 上已安装的应用。

  • 您尝试安装 Windows 的文件夹安装程序包已加密。

  • 包含您尝试安装 Windows Installer 程序包的文件夹的驱动器作为替代驱动器被访问。

  • SYSTEM 帐户对您尝试安装 Windows Installer 程序包的文件夹没有完全控制权限。您注意到错误消息是因为 Windows Installer 服务使用 SYSTEM 帐户安装软件。

代码:

:outer for($i=1; $i -le $attempts; $i++) {
$timeout = $null
$proc = Start-Process -filePath $InstallerPath -ArgumentList $InstallCommand -PassThru
$proc | Wait-Process -Timeout $SecondsToWait -ea 0 -ev timeout
If (($timeout) -or ($proc.ExitCode -ne 0)) {
$proc | kill
$error = "`tFailed To Run $($ProcessTitle)Operations: Exit-Code = $($proc.ExitCode)"
If(($i+1) -le $attempts) {
WriteLog -Message($error) -MainLoggingConfigs $MainLoggingConfigs
Start-Sleep -s $WaitTimePerAttempt
}
Else {
throw $error
}
}
Else {
break outer
}

最佳答案

如果使用 MSI,您需要使用 Start-Process msiexec.exe -wait -NoNewWindow 而不是 Wait-Process 。如果您真的担心它永远运行下去,请考虑使用 PowerShell 作业:

Start-Job -Name MyInstall -scriptBlock {
Start-Process msiexec.exe -NoNewWindow -ArgumentList $MSIArguments
}
Wait-Job -Name MyInstall

然后检查作业 Get-Job MyInstall 的输出、状态消息、状态、错误,尤其是子作业。

如果您的 Start-Process 创建了尚未结束的子进程,则您收到的错误可能是由于竞争安装尝试造成的。尝试使用类似 Kevin Marquette's 的东西也可以保存冗长的 MSI 日志的解决方案:

$MSI = 'C:\path\to\msi.msi'
$DateStamp = get-date -Format yyyyMMddTHHmmss
$logFile = "$MSI-$DateStamp.log"
$MSIArguments = @(
"/i"
"`"$MSI`""
"/qn"
"/norestart"
"/L*v"
$logFile
)
Start-Process "msiexec.exe" -ArgumentList $MSIArguments -Wait -NoNewWindow

关于powershell - 使用 PowerShell 命令 Start-Process 安装 msi 时,出现退出代码 1603 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64754999/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com