PowerShell One-liner: Getting the List of Available ConfigMgr Cmdlets

Configuration Manager 2012 SP1 contains a slew of new PowerShell Cmdlets to help manage and manipulate your ConfigMgr environment. If you'd like to get the full list of available Cmdlets, you can use a simple one-line script to retrieve the results.

Rod Trent

May 1, 2013

1 Min Read
PowerShell One-liner: Getting the List of Available ConfigMgr Cmdlets

Configuration Manager 2012 SP1 contains a slew of new PowerShell Cmdlets to help manage and manipulate your ConfigMgr environment. If you'd like to get the full list of available Cmdlets, you can use a simple one-line script to retrieve the results.

With the ConfigMgr module imported, run this at the PowerShell prompt:

 

get-command -module ConfigurationManager | out-gridview

 

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.

You May Also Like