Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9285145
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T19:05:21+00:00 2026-06-18T19:05:21+00:00

Powershell v2: try { Remove-Item C:\hiberfil.sys -ErrorAction Stop } catch [System.IO.IOException] { problem }

  • 0

Powershell v2:

try { Remove-Item C:\hiberfil.sys -ErrorAction Stop }
catch [System.IO.IOException]
{ "problem" }
catch [System.Exception]
{ "other" }

I’m using the hibernation file as an example, of course. There’s actually another file that I expect I may not have permission to delete sometimes, and I want to catch this exceptional situation.

Output:

output

and yet $error[0] | fl * -Force outputs System.IO.IOException: Not Enough permission to perform operation.

Problem: I don’t see why I’m not catching this exception with my first catch block, since this matches the exception type.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T19:05:22+00:00Added an answer on June 18, 2026 at 7:05 pm

    When you use the Stop action PowerShell changes the type of the exception to:

    [System.Management.Automation.ActionPreferenceStopException]
    

    So this is the what you should catch. You can also leave it out and catch all types.
    Give this a try if you want to opearte on different excdeptions:

    try 
    {
        Remove-Item C:\pagefile.sys -ErrorAction Stop
    }
    catch
    {
        $e = $_.Exception.GetType().Name
    
        if($e -eq 'ItemNotFoundException' {...}
        if($e -eq 'IOException' {...}
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've grown very fond of using try..catch statements in Powershell scripts (specially when calling
I want to do a Try Catch on an .exe in Powershell, what I
I am using the below PowerShell function to parse event logs that have been
With a powershell code I try to change the position of a window (is
If I try to run a Powershell Command through c# I get the following
How do I use PowerShell to update list field properties? When I try the
Using powershell, you can use the '&' character to run another application and pass
I am just getting started with Windows Powershell and I am try to create
i try to migrate a cmd Batch file to powershell, but powershell don't accept
I have a Powershell script and no matter what I try it completely ignores

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.