Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

powershell check if command exists

if (Get-Command $cmdName -errorAction SilentlyContinue)
{
    "$cmdName exists"
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #powershell #check #command #exists
ADD COMMENT
Topic
Name
8+1 =