Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
CryptoAlgo Inc daad8a087a Add source files 4 years ago
..
dlldata.c Add source files 4 years ago
dlldatax.c Add source files 4 years ago
dlldatax.h Add source files 4 years ago
event.cpp Add source files 4 years ago
event.h Add source files 4 years ago
event.rgs Add source files 4 years ago
events.cpp Add source files 4 years ago
events.h Add source files 4 years ago
events.rgs Add source files 4 years ago
evntutl.cpp Add source files 4 years ago
evntutl.def Add source files 4 years ago
evntutl.h Add source files 4 years ago
evntutl.idl Add source files 4 years ago
evntutl.rc Add source files 4 years ago
log.cpp Add source files 4 years ago
log.h Add source files 4 years ago
log.rgs Add source files 4 years ago
logs.cpp Add source files 4 years ago
logs.h Add source files 4 years ago
logs.rgs Add source files 4 years ago
makefile Add source files 4 years ago
readme.txt Add source files 4 years ago
resource.h Add source files 4 years ago
sources Add source files 4 years ago
stdafx.cpp Add source files 4 years ago
stdafx.h Add source files 4 years ago
types.h Add source files 4 years ago
view.cpp Add source files 4 years ago
view.h Add source files 4 years ago
view.rgs Add source files 4 years ago

readme.txt

The EventLogUtilities objects are structured much like the EventLog viewer.
The main object is View, it can be used to access the various event logs on a system (View.Logs) and to change which server the event logs will be obtained from.
The Logs object can be used to enumerate through the primary logs: Application, Security, and System. To access other logs, use Logs.Item("NameOfLog").
The Log object provides access to the Events object which holds the collection of events for a particular log.
An Event object is the bottom level object and contains the properties which make up an event. Note: event time is given as local system time.

Example Use from VBScript:

Set oView = CreateObject("EventLogUtilities.View")

for each oLog in oView.Logs
for each oEvent in oLog.Events
wscript.echo oEvent.Description
next
next