List-ErrorTypes
ErrorTypes
[appdomain]::CurrentDomain.GetAssemblies() | ForEach {
Try {
$_.GetExportedTypes() | Where {
$_.Fullname -match 'Exception'
}
} Catch {}
} | Select BaseType,Name,FullNameThis script has no configurable parameters.