18

I'm having an issue with PowerShell where it will not catch an exception even when the exception is explicitly mentioned in the catch command.

In this case, I'm trying to determine if a ProcessID is still running, and if not then it will take some actions.

The sample code block that I am struggling with is:

    try {
      Get-Process -Id 123123 -ErrorAction 'Stop'
    } 
    catch [Microsoft.PowerShell.Commands.ProcessCommandException] {
      "Caught by Exception Type: Process is missing"
    }
    catch {
    if ($_.Exception.getType().FullName -eq "Microsoft.PowerShell.Commands.ProcessCommandException") {
      "Caught by Catch All: Process is missing"
      }
    }

When this code block is executed the output is:

Caught by Catch All: Process is missing

You would expect the first catch condition to trigger as it names the exception being thrown correctly, but it doesn't trigger.

To make things worse, when the second catch command runs (which catches anything) it queries the name of the exception type and checks if it is "Microsoft.PowerShell.Commands.ProcessCommandException" (which it is) and then takes appropriate steps.

I know I can work around this, but I feel I'm missing a fundamental way about how PowerShell handles Exceptions.

Can anyone shed light on this for me?

2 Answers 2

28

When you set ErrorAction to Stop, non-terminating errors are wrapped and thrown as type System.Management.Automation.ActionPreferenceStopException, this is the type you want to catch.

try 
{
    Get-Process -Id 123123 -ErrorAction Stop
} 
catch [System.Management.Automation.ActionPreferenceStopException]
{
    ... do something ...
}
Sign up to request clarification or add additional context in comments.

8 Comments

Thank you very much, that was it. I was sure it was being wrapped in something but for the life of me I couldn't workout what the wrapping exception type was. At least once caught that way I can query on the .getType().FullName to validate the error type. Interestingly, it doesn't matter if -ErrorAction 'Stop' is used or $ErrorActionPreference = 'Stop' the result is the same.
Yes, and I prefer to change it on the cmdlet level so I don't need to revert the global value each time I change its value..
Hi, is there a explanation of how we get from the generalized object type 'Microsoft.PowerShell.Commands.ProcessCommandException' to 'System.Management.Automation.ActionPreferenceStopException' ? I'm trying to catch a exception for another class or error and get stuck in the same place as @david-thomas did.
@ShayLevy If you would like your script to stop execution when an error occurs is there any way to catch typed exceptions? We often set the ErrorActionPreference variable to have our scripts stop executing. How could I inspect the type of exception in that case?
7 years later: it looks like powershell doesn't wrap these exceptions anymore, and the real exception type can be captured..
|
-1

Maybe cause you are missing an error action

try 
{ 
    kill 1234567 -ErrorAction Stop 
} 
catch 
{ 
    Write-Host "Blam!" 
}

1 Comment

Could you please provide a bit more explanation about how your solution solves the issue.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.