1074 System log · System Control medium severity low volume

System Event ID 1074 — The process has initiated the restart or shutdown of computer

A process initiated a system shutdown or restart. ProcessName, Reason, and Type are key. Type: 4=forced, 5=planned. Reason codes reveal whether planned or unexpected.

Why event 1074 matters

Forced reboots are used to complete ransomware deployment, apply malicious system changes, or clear in-memory forensic evidence. Reboots initiated by unexpected processes or at odd times warrant investigation.

How to detect it

Alert: shutdown/restart initiated by non-Windows Update, non-admin processes. Alert: restarts outside maintenance windows. Alert: Type=4 (forced, immediate) from unexpected processes. Correlate with 4688 to identify the initiating process.

Log source
System
Logged by default in the System channel; no audit policy required.
Fields to pivot on
param1param2Computer

MITRE ATT&CK mapping

Tactic Technique
Impact System Shutdown/Reboot (T1529)

Detection queries

Starting points — adapt the log source, projected fields and thresholds for your environment.

Sentinel / Defender KQL
Event
| where EventLog == "System" and EventID == 1074   // The process has initiated the restart or shutdown of computer
// EventData holds: param1, param2, Computer
| project TimeGenerated, Computer, RenderedDescription
| sort by TimeGenerated desc
Splunk SPL
index=* sourcetype="WinEventLog:System" EventCode=1074
| stats count earliest(_time) as first_seen latest(_time) as last_seen by ComputerName
| sort - count   `# The process has initiated the restart or shutdown of computer — add EventData fields: param1, param2, Computer`
Hunt event 1074 in Sentinel/Defender →
Build a KQL query for this event in the KQL Query Builder.
Search all event IDs →
Open the interactive Windows Event ID lookup.

Frequently asked questions

What is System Event ID 1074?

The process has initiated the restart or shutdown of computer. A process initiated a system shutdown or restart. ProcessName, Reason, and Type are key. Type: 4=forced, 5=planned. Reason codes reveal whether planned or unexpected.

Which log records event 1074?

Event 1074 is written to the System channel by Service Control Manager / Kernel. Logged by default in the System channel; no audit policy required.

What MITRE ATT&CK techniques map to event 1074?

Event 1074 is associated with: System Shutdown/Reboot (T1529).

How do you detect activity around event 1074?

Alert: shutdown/restart initiated by non-Windows Update, non-admin processes. Alert: restarts outside maintenance windows. Alert: Type=4 (forced, immediate) from unexpected processes. Correlate with 4688 to identify the initiating process.