icinga-powershell-framework/lib/core/installer/tools/GetLastParent.psm1

10 lines
232 B
PowerShell
Raw Normal View History

function Get-IcingaForWindowsInstallerLastParent()
{
if ($global:Icinga.InstallWizard.LastParent.Count -ne 0) {
$Parent = $global:Icinga.InstallWizard.LastParent[-1];
return $Parent;
}
return $null;
}