Summary: Learn how to find Windows PowerShell exported types.
How can I easily look at runspace exported types in Windows PowerShell?
Call the Assembly property from the [psobject] type accelerator, and then call the GetExportedTypes() method,
for example:
[psobject].Assembly.GetExportedTypes()