Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

powershell - Catch exception from external windows command utility

I'm trying to terminate a script when running an external command results in an error. Consider this simple code:

try {
    where.exe Test-App
}

catch {
    Write-Error "Exception caught." -ErrorAction Continue
    throw
}

Write-Host "Test message!"

Output:

where.exe : INFO: Could not find files for the given pattern(s).
At line:2 char:5
    where.exe Test-App
...
Test message!

Is it possible to enter the catch block and throw, when an external command results in an error?

Desired output:

C:ScriptsTest-Script.ps1 : Exception caught.
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

As TheIncorrigible1 suggests, inspect $LASTEXITCODE, like so:

$where = where.exe test 2>&1
if($LASTEXITCODE -ne 0){
    throw "Exception caught."
    return
}
# otherwise continue, grab actual output from $where

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...