Learn about Windows PowerShell
Summary: Learn how to see detailed information when you import a Windows PowerShell module.
How can you receive detailed information when importing a module?
Use the Verbose parameter when you import the module:
Import-Module bits -verbose
when I ran this against the active directory module it indicates that it is both Importing and Exporting cmdlets.
What is the difference?