I have created a C# Windows Service that monitors the event logs on Exchange
2003. I do this using the EntryWritten event on the event log itself.
When I receive notification of the event, the event ID does not match what
is displayed in the event log. The event ID I receive is much larger. In
fact, it is out-of-range for event ids.
I'm getting the event id out of the System.Diagnostics.EntryWrittenEventArgs
class using the following statement:
e.Entry.EventID
Anyone have an idea as to how to fix this on Exchange? It works on other
machines running Windows Server 2003.
Thanks.