Skip to content

List-ErrorTypes

ErrorTypes

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

This script has no configurable parameters.

An interactive directory of PowerShell scripts.