mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-21 07:10:15 -05:00
12 lines
408 B
PowerShell
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);
|
|
}
|