whihathac
whihathac

Reputation: 1761

How to verify if CmdLet is present

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

Answers (1)

mjolinor
mjolinor

Reputation: 68243

Get-Command <cmdlet name>

Upvotes: 3

Related Questions