Quantcast
Channel: Hey, Scripting Guy! Blog
Viewing all articles
Browse latest Browse all 3333

PowerTip: Use PowerShell to List Exported Types

$
0
0

Summary: Boe Prox shows how to use Windows PowerShell to list exported types.

Hey, Scripting Guy! Question How can I use Windows PowerShell to list all of the exported types?

Hey, Scripting Guy! Answer Use this command:

 [appdomain]::CurrentDomain.GetAssemblies()|ForEach {

    Try {

        $_.GetExportedTypes()

    } Catch {}

}


Viewing all articles
Browse latest Browse all 3333

Trending Articles