I have a need to query the System Event Log and I'm using the following
query.
Set colLoggedEvents = objWMIService.ExecQuery _
("Select * from Win32_NTLogEvent Where Logfile = 'System'")
For Each objEvent in colLoggedEvents
do stuff
Next
Is it safe for me to assume that the log will ALWAYS be read starting from
the most recent event, so when I find the first occurance the
objEvent.EventCode I'm looking for it will ALWAYS be the most recent? If
not, what steps do I have to take to ensure that?
Thanks,
Tom