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

PowerTip: Find PowerShell Exported Types

$
0
0

Summary: Learn how to find Windows PowerShell exported types.

Hey, Scripting Guy! Question How can I easily look at runspace exported types in Windows PowerShell?

Hey, Scripting Guy! Answer Call the Assembly property from the [psobject] type accelerator, and then call the GetExportedTypes() method,
           for example:

[psobject].Assembly.GetExportedTypes()


Viewing all articles
Browse latest Browse all 3333

Trending Articles