icinga-powershell-framework/lib/core/installer/tools/GetDisabledEntry.psm1
2021-09-02 09:23:10 +02:00

12 lines
274 B
PowerShell

function Get-IcingaForWindowsInstallerDisabledEntry()
{
param (
[string]$Name = ''
);
if ($Global:Icinga.InstallWizard.DisabledEntries.ContainsKey($Name)) {
return ($Global:Icinga.InstallWizard.DisabledEntries[$Name]);
}
return '';
}