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
Pingback: PowerShell Guides - A guide to Microsoft ProductsA guide to Microsoft Products