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