Summary: Learn how to find and import Windows PowerShell modules.
I want to get a list of all the modules that are installed with Windows PowerShell on my machine. How can you do this?
Inside a Windows PowerShell console, type the following command:
Get-Module -ListAvailable
I want to load all of the modules that are installed with Windows PowerShell on my machine. How can you do this?
Inside a Windows PowerShell console, type the following command:
Get-Module –ListAvailable | import-module