Check module that contains a cmdlet

Find the module that contains a cmdlet.

John Savill

March 5, 2016

1 Min Read
Check module that contains a cmdlet

Q. How can I check which module contains a cmdlet?

A. To check which module contains a cmdlet use the following:

Get-Command -type cmdlet | fl *

In the output is a property ModuleName which shows the module that contains the cmdlet.

About the Author

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