如何清除外部cmdlet或可执行文件设置的$ error和$ LASTEXITCODE?

时间:2016-12-23 19:03:05

标签: powershell

我有一个自定义模块包装外部命令(csrun.exe),并解析输出,以便我可以在PowerShell中使用它。

除了外部命令写入stderror以及清除cmdlet中的错误之外,所有内容都可以正常工作。它会清除(即$error.count0$lasterrorcode0,但是一旦我返回到调用我的cmdlet的脚本,$error和{{ 1}}不再清除,$lasterrorcode中的错误引用外部命令的基础异常

$error

我尝试过,尝试捕捉,清除上述变量。无论如何,调用脚本保留对错误的引用。

CustomModule.psm1

System.Management.Automation.RemoteException: The compute emulator is not running.

Test.ps1

$__azureEmulatorPath = "C:\Program Files\Microsoft SDKs\Azure\Emulator\"SDKs\Azure\Emulator\"
$__azureEmulator = __azureEmulatorPath + "csrun.exe"

function Get-EmulatorStatus() {
    [OutputType([ComputeEmulatorStatus])] 
    [cmdletbinding()]
    param()

    $output = (& $__azureEmulator /status | Out-String)

    if ($error.Count -gt 0 -or $LASTEXITCODE -ne 0) {
        Write-Host ($Error | Format-List -Force | Out-String)
        Write-Host Clearing Error and Continuing
        $error.Clear()
        $LASTEXITCODE = 0
    }

    #error from command cleared here

    return $output
}

export-modulemember -function *

1 个答案:

答案 0 :(得分:6)

尝试使用以下两个选项之一:

  • 从您的cmdlet中使用退出,例如退出0 (首选)。
  • 在明确设置代码时使用全局范围,例如。 $全球:LASTEXITCODE

我遇到了这个调用robocopy,即使成功也设置了非零退出代码,并干扰了Jenkin的自动化。