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