icinga-powershell-framework/lib/core/tools/Test-IcingaFunction.psm1

17 lines
255 B
PowerShell
Raw Normal View History

function Test-IcingaFunction()
{
param(
[string]$Name
);
if ([string]::IsNullOrEmpty($Name)) {
return $FALSE;
}
if (Get-Command $Name -ErrorAction SilentlyContinue) {
return $TRUE;
}
return $FALSE;
}