How can I list all available modules in PowerShell?

This is a quick post based on a question I got today. A friend wondered which PowerShell modules were available by standard in Windows 8.1.

To get the complete list of all modules that are available on your system, simply run the following line:
“Get-Module -ListAvailable”

In the console, all modules will be listed together with the cmdlts that will be available.

If you, for some reason, want to import all modules available, simply pipe the above to “Import-Module”. The line would then be:

Get-Module -ListAvailable | Import-Module

Click here for more guides

This entry was posted in Powershell and tagged , , , , . Bookmark the permalink.

1 Response to How can I list all available modules in PowerShell?

  1. Pingback: PowerShell Guides - A guide to Microsoft ProductsA guide to Microsoft Products

Leave a Reply

Your email address will not be published. Required fields are marked *