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