Skip to content

Start here: a DFIR analyst's guide to .evtx

What .evtx is, which channels matter, the Event IDs to know, and where to find each one on disk — a navigational starting point for everything else on this blog.

Published Updated 3 {n} min read

.evtx is the binary Windows Event Log format Microsoft shipped with Windows Vista to replace the older .evt. It's the spine of every Windows incident response: logons, service installs, scheduled tasks, PowerShell command lines, and Sysmon process trees all serialise into it. This post is the index — a one-screen orientation, then links to the deeper posts on the channels and Event IDs that actually matter on a case.

New to .evtx? Start with what an .evtx file is and how to open one. The rest of this post is the channel-and-Event-ID orientation for analysts already comfortable with the format.

Where the files live

Live logs sit under C:\Windows\System32\winevt\Logs\. Each channel is one .evtx file. The defaults you'll always have:

  • Security.evtx — logons, privilege use, audit policy changes. Highest forensic value on most cases.
  • System.evtx — drivers, services, OS-level errors.
  • Application.evtx — application-level errors.
  • Setup.evtx / ForwardedEvents.evtx — install records and forwarded WEF traffic.

Plus per-application channels under Microsoft-Windows-* — the ones that earn their keep on a case:

  • Microsoft-Windows-Sysmon%4Operational.evtx — only present if Sysmon is installed, but worth gold when it is.
  • Microsoft-Windows-PowerShell%4Operational.evtx — scriptblock + module logging.
  • Microsoft-Windows-TaskScheduler%4Operational.evtx — scheduled task creates/runs.
  • Microsoft-Windows-TerminalServices-LocalSessionManager%4Operational.evtx — RDP session lifecycle.

For deep details on how a file is laid out — the 64 KB chunks, the XML template tables, BinXML — see Inside the EVTX file format.

The Event IDs to know

The shortlist that covers most of what an analyst pivots on:

How this site fits

The parser on the home page is the Rust crate omerbenamram/evtx compiled to WebAssembly and run inside a Web Worker. You drop an .evtx, the worker walks the chunks, and you get a filterable event timeline plus per-record XML — all in the browser, nothing uploaded. Use it for ad-hoc triage when you don't want to spin up an EDR or move a file off a system you don't own.

If you're collecting .evtx from a live host (KAPE, FTK Imager, wevtutil), that post covers the four standard methods with the chain-of-custody trade-offs each one makes.