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

9 lines
232 B
PowerShell

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