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.
Find the module that contains a cmdlet.
March 5, 2016
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.
You May Also Like