mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-21 07:10:15 -05:00
11 lines
470 B
PowerShell
11 lines
470 B
PowerShell
function Unregister-IcingaEventLog()
|
|
{
|
|
# Icinga for Windows v1.8.0 or later
|
|
Remove-EventLog -LogName 'Icinga for Windows' -ErrorAction SilentlyContinue;
|
|
|
|
# Older versions
|
|
Remove-EventLog -Source 'Icinga for Windows' -ErrorAction SilentlyContinue;
|
|
# Icinga for Windows v1.8.0 or later - required a second time to ensure
|
|
# everything is removed for legacy versions
|
|
Remove-EventLog -LogName 'Icinga for Windows' -ErrorAction SilentlyContinue;
|
|
}
|