Add list-error-types.ps1

This commit is contained in:
Markus Fleschutz 2023-12-06 13:39:32 +01:00
parent da55be390b
commit d9c6286503

View File

@ -0,0 +1,7 @@
[appdomain]::CurrentDomain.GetAssemblies() | ForEach {
Try {
$_.GetExportedTypes() | Where {
$_.Fullname -match 'Exception'
}
} Catch {}
} | Select BaseType,Name,FullName