tags:

views:

812

answers:

3

Are there any libraries or resources available for parsing/reading an archived eventlogs?

+1  A: 

Which IIS version do you use ? If you use IIS 6, You can use Microsoft Log Parser to see it. Download from IIS 6 Resource Kit

Funky81
Its not so much an IIS thing. I get sent eventlog archives and need to process them some how.
Aaron Fischer
+2  A: 

There is this article Parsing event log(*.evt) file. Then there is the Microsoft Event Log file format documentation (evt used on xp win 2003). So far the only information I can find for the new format is a pdf from some forensic conference. And how to convert evt to evtx

Aaron Fischer
+1  A: 

If the file is .evt, you can just run eventvwr, click Action->Open Log File and select the archived file and the file type.

For programmatic access, there is a .NET class System.Diagnostics.EventLog which would have everything you need.