mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-21 15:19:58 -05:00
6 lines
236 B
PowerShell
6 lines
236 B
PowerShell
function Remove-IcingaForWindowsInstallerLastParent()
|
|
{
|
|
if ($global:Icinga.InstallWizard.LastParent.Count -ne 0) {
|
|
$global:Icinga.InstallWizard.LastParent.RemoveAt($global:Icinga.InstallWizard.LastParent.Count - 1);
|
|
}
|
|
}
|