The Windows Event Log service started — typically indicates system boot. Used to identify system restart times.
Establish system uptime and boot timeline. Unexpected reboots (no corresponding shutdown event 6006) may indicate BSOD, power failure, or kill-switch-style attack.
Use to establish system boot timeline. Correlate with 6006 (stop) and 1074 (shutdown) for reboot analysis. Unexpected boots outside maintenance windows warrant investigation.
param1param2Computer Starting points — adapt the log source, projected fields and thresholds for your environment.
Event
| where EventLog == "System" and EventID == 6005 // The Event Log service was started
// EventData holds: param1, param2, Computer
| project TimeGenerated, Computer, RenderedDescription
| sort by TimeGenerated desc
index=* sourcetype="WinEventLog:System" EventCode=6005
| stats count earliest(_time) as first_seen latest(_time) as last_seen by ComputerName
| sort - count `# The Event Log service was started — add EventData fields: param1, param2, Computer`
The Event Log service was started. The Windows Event Log service started — typically indicates system boot. Used to identify system restart times.
Event 6005 is written to the System channel by Service Control Manager / Kernel. Logged by default in the System channel; no audit policy required.
Use to establish system boot timeline. Correlate with 6006 (stop) and 1074 (shutdown) for reboot analysis. Unexpected boots outside maintenance windows warrant investigation.