icinga-powershell-framework/lib/core/installer/tools/Menu.psm1
2021-08-06 15:08:53 +02:00

12 lines
408 B
PowerShell

function Get-IcingaForWindowsManagementConsoleMenu()
{
if ($null -eq $global:Icinga -Or $null -eq $global:Icinga.InstallWizard) {
return '';
}
if ([string]::IsNullOrEmpty($global:Icinga.InstallWizard.Menu) -Or $global:Icinga.InstallWizard.Menu -eq 'break') {
return '';
}
return (Get-IcingaForWindowsManagementConsoleAlias -Command $global:Icinga.InstallWizard.Menu);
}