mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-21 15:19:58 -05:00
51 lines
1.9 KiB
PowerShell
51 lines
1.9 KiB
PowerShell
function Uninstall-IcingaAgent()
|
|
{
|
|
param (
|
|
[switch]$RemoveDataFolder = $FALSE
|
|
);
|
|
|
|
$IcingaData = Get-IcingaAgentInstallation;
|
|
[string]$IcingaProgramData = Join-Path -Path $Env:ProgramData -ChildPath 'icinga2';
|
|
|
|
if ($IcingaData.Installed -eq $FALSE) {
|
|
Write-IcingaConsoleNotice 'Unable to uninstall the Icinga Agent. The Agent is not installed';
|
|
if ($RemoveDataFolder) {
|
|
if (Test-Path $IcingaProgramData) {
|
|
Write-IcingaConsoleNotice -Message 'Removing Icinga Agent directory: "{0}"' -Objects $IcingaProgramData;
|
|
return ((Remove-ItemSecure -Path $IcingaProgramData -Recurse -Force) -eq $FALSE);
|
|
} else {
|
|
Write-IcingaConsoleNotice -Message 'Icinga Agent directory "{0}" does not exist' -Objects $IcingaProgramData;
|
|
}
|
|
}
|
|
return $FALSE;
|
|
}
|
|
|
|
Stop-IcingaService -Service 'icinga2';
|
|
|
|
$Uninstaller = & powershell.exe -Command {
|
|
Use-Icinga -Minimal;
|
|
|
|
$IcingaData = $args[0];
|
|
$Uninstaller = Start-IcingaProcess -Executable 'MsiExec.exe' -Arguments ([string]::Format('{0} /q', $IcingaData.Uninstaller)) -FlushNewLine;
|
|
|
|
Start-Sleep -Seconds 2;
|
|
Optimize-IcingaForWindowsMemory;
|
|
|
|
return $Uninstaller;
|
|
} -Args $IcingaData;
|
|
|
|
if ($Uninstaller.ExitCode -ne 0) {
|
|
Write-IcingaConsoleError ([string]::Format('Failed to remove Icinga Agent: {0}{1}', $Uninstaller.Message, $Uninstaller.Error));
|
|
return $FALSE;
|
|
}
|
|
|
|
if ($RemoveDataFolder) {
|
|
Write-IcingaConsoleNotice -Message 'Removing Icinga Agent directory: "{0}"' -Objects $IcingaProgramData;
|
|
if ((Remove-ItemSecure -Path $IcingaProgramData -Recurse -Force) -eq $FALSE) {
|
|
return $FALSE;
|
|
}
|
|
}
|
|
|
|
Write-IcingaConsoleNotice 'Icinga Agent was successfully removed';
|
|
return $TRUE;
|
|
}
|