Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.
Use this switch in PowerShell to get a list of all available modules.
March 29, 2013
Q: How can I see all available Windows PowerShell modules?
A: You can see all the available Windows PowerShell modules by using a PowerShell cmdlet and a switch. Simply add the -listavailable switch to get-module to list all available PowerShell modules that can be loaded:
get-module -listavailable
You May Also Like