System version information logged at startup. Contains OS version, build, processor architecture.
Minimal threat relevance. Useful for asset inventory and detecting operating system changes (unauthorized OS upgrades/downgrades).
No alerting. Use for system inventory and change detection.
param1param2Computer Starting points — adapt the log source, projected fields and thresholds for your environment.
Event
| where EventLog == "System" and EventID == 6009 // Microsoft Windows version
// EventData holds: param1, param2, Computer
| project TimeGenerated, Computer, RenderedDescription
| sort by TimeGenerated desc
index=* sourcetype="WinEventLog:System" EventCode=6009
| stats count earliest(_time) as first_seen latest(_time) as last_seen by ComputerName
| sort - count `# Microsoft Windows version — add EventData fields: param1, param2, Computer`
Microsoft Windows version. System version information logged at startup. Contains OS version, build, processor architecture.
Event 6009 is written to the System channel by Service Control Manager / Kernel. Logged by default in the System channel; no audit policy required.
No alerting. Use for system inventory and change detection.