Event IDs worth knowing Pro
The lookup done more often than any other, usually into a search engine because nothing good is open in a tab. Not exhaustive on purpose: a list of every Windows event ID is a list nobody reads.
the column that matters
Each entry carries what a bare description leaves out: what it does not tell you, and whether it is on by default. 5 of the 14 here are off until somebody turns them on, which means an empty result is frequently a configuration finding rather than an absence of activity.
| ID | What it is | What it does not tell you |
|---|---|---|
4624Security | Successful logonAn account authenticated. The Logon Type is the field that matters: 2 interactive at the keyboard, 3 network such as a share, 10 RemoteInteractive which is RDP. | It shows authentication, never who was at the keyboard. The source IP may itself be a pivot rather than the origin. |
4625Security | Failed logonAuthentication failed, with a status code giving the reason: bad password, disabled account, outside logon hours. | Failures against one host from one source, across several accounts, is spraying. A burst against a single account is more often a stale service credential than an attack. |
4688Securityoff by default | Process creationA process started, with its parent. With command-line auditing enabled it also carries the full command line, which turns this into the most valuable event in the log. | Command-line capture is a SEPARATE policy setting and is off by default. Without it you get names and no arguments, which is the difference between seeing powershell.exe and seeing what it ran. |
4104PowerShell/Operationaloff by default | Script block loggingThe literal text of a PowerShell block, after deobfuscation. Base64 and compressed payloads appear decoded. | Off by default. An empty log is a configuration finding rather than an absence of activity, and a PowerShell 2.0 downgrade avoids it entirely. |
1102Security | Audit log clearedSomebody cleared the Security log, and it records who. | One of the few events that is a finding on its own. It is also the last thing in the log, so treat the gap before it as the window of interest. |