Skip to content

Instantly share code, notes, and snippets.

@jcotton42
Created May 22, 2018 04:25
Show Gist options
  • Save jcotton42/71cf0469ad925751932318b376a890d8 to your computer and use it in GitHub Desktop.
Save jcotton42/71cf0469ad925751932318b376a890d8 to your computer and use it in GitHub Desktop.
function Get-AllExceptions {
param(
[Exception] $E
)
while($E -ne $null) {
$E
$E = $E.InnerException
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment