Reputation: 1761
Is there any quick way to check if a Cmdlet is available for me to execute? I do not want to loop the loaded modules and check if the cmdlet is present.
Upvotes: 0
Views: 159
Reputation: 68243
Get-Command <cmdlet name>
Upvotes: 3