January 2nd, 2014

PowerTip: Determine If PowerShell Command Exists

Doctor Scripto
Scripter

Summary: Use Get-Help to determine if a Windows PowerShell command exists.

Hey, Scripting Guy! Question How can I find if a Windows PowerShell command (cmdlet or function) exists in my version of Windows PowerShell?

Hey, Scripting Guy! Answer Use the Get-Help cmdlet. If Help returns, you can read about the command.
          If it does not return, follow up with Get-Command:

get-help my-coolfunction

get-command my-coolfunction

Author

The "Scripting Guys" is a historical title passed from scripter to scripter. The current revision has morphed into our good friend Doctor Scripto who has been with us since the very beginning.

0 comments

Discussion are closed.