gpt4 book ai didi

powershell - 忽略特定行的Powershell脚本故障

转载 作者:行者123 更新时间:2023-12-03 01:15:27 26 4
gpt4 key购买 nike

我有一个定义$ErrorActionPreference = "Stop"的Powershell脚本
但是我也有一个start-process调用,该调用的目标是成功返回非标准退出代码(1而不是0)的进程。
结果,即使启动过程正常,脚本也会失败。
我试图在-ErrorAction "Continue"调用中附加start-process参数,但没有解决问题。

有问题的行如下所示:

$ErrorActionPreference = "Stop"
...
start-process "binary.exe" -Wait -ErrorAction "Continue"
if ($LastExitCode -ne 1)
{
echo "The executable failed to execute properly."
exit -1
}
...

如何防止启动过程使整个脚本失败。

最佳答案

Start-Process不会更新$LASTEXITCODE。使用Start-Process参数运行-PassThru以获取流程对象,并评估该对象的ExitCode属性:

$ErrorActionPreference = "Stop"
...
$p = Start-Process "binary.exe" -Wait -PassThru
if ($p.ExitCode -ne 1) {
echo "The executable failed to execute properly."
exit -1
}

关于powershell - 忽略特定行的Powershell脚本故障,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30806321/

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