Quantcast
Channel: Hey, Scripting Guy! Blog
Viewing all articles
Browse latest Browse all 3333

PowerTip: Find All Modules on a System by Using PowerShell

$
0
0

Summary: Learn how to find all modules on a system by using Windows PowerShell.

Hey, Scripting Guy! Question How can I find all of the modules on my system by using Windows PowerShell?

Hey, Scripting Guy! Answer Use the Get-Command cmdlet and specify all of the modules. Pipe the results to the Group-Object cmdlet, and sort the results to make it easier to read, as shown here.

Get-Command -Module * | Group-Object module -NoElement | sort-object name

 


Viewing all articles
Browse latest Browse all 3333

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>