PowerShell 技能连载 - 评估 Exit Code(也叫做 Error Level – 第一部分)

当运行一个控制台应用程序时,它通常会返回一个数字型的 exit code。该 exit code 的含义取决于控制台应用程序,要查询应用程序才能理解 exit code 的含义。PowerShell 也会将 exit code 传递给用户。它通过 $LASTEXITCODE 体现。

以下是一个使用 ping.exe 来测试网络响应的例子:

1
2
3
4
5
6
7
8
9
$hostname = 'powershellmagazine.com'
# run console-based executable directly
# and disregard text results
$null = ping.exe $hostname -n 2 -w 2000
# instead look at the exit code delivered in
# $LASTEXITCODE. Ping.exe returns 0 if a
# response was received:
$IsOnline = $LASTEXITCODE -eq 0
$IsOnline

PowerShell 技能连载 - 评估 Exit Code(也叫做 Error Level – 第一部分)

http://blog.vichamp.com/2017/04/24/evaluating-exit-codes-aka-error-level-part-1/

作者

吴波

发布于

2017-04-24

更新于

2022-07-06

许可协议

评论