Skip to content

Instantly share code, notes, and snippets.

@ronascentes
Last active August 17, 2018 16:52
Show Gist options
  • Save ronascentes/2a612b15b52d300ad0eda598ebcbec49 to your computer and use it in GitHub Desktop.
Save ronascentes/2a612b15b52d300ad0eda598ebcbec49 to your computer and use it in GitHub Desktop.
Powershell Generic Error Handling
try{
Get-Childitem c:\Foo -ErrorAction stop
}
catch [System.Management.Automation.ItemNotFoundException]{
'oops, I guess that folder was not there'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment