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

15 lines
462 B
PowerShell

function Add-IcingaForWindowsManagementConsoleLastParent()
{
$Menu = Get-IcingaForWindowsManagementConsoleAlias -Command (Get-IcingaForWindowsManagementConsoleMenu);
if ($Menu -eq (Get-IcingaForWindowsInstallerLastParent)) {
return;
}
# Do not add Yes/No Dialog to the list
if ($Menu -eq 'Show-IcingaWindowsManagementConsoleYesNoDialog') {
return;
}
$global:Icinga.InstallWizard.LastParent.Add($Menu) | Out-Null;
}