Defensive tooling stopped and left stopped.
What gives it awayA security or logging service terminating with no restart, followed by other activity on the machine.
ATT&CK T1562.001Nothing matches that yet. Tell us what you were looking for and it goes on the list.
Windows System Log · Event 7034
A service crashed and Windows did nothing about it, because no recovery action was configured. That makes it more consequential than the near-identical Event 7031 — whatever the service was doing has simply stopped.
Also written as 7034Event ID 7034
A background component stopped and did not come back. If something on your PC has stopped working, this may be why — restarting usually brings it back.
The absence of recovery is the point. Check your service recovery configuration for anything you depend on; a security agent with no restart action is a single crash away from being offline indefinitely.
Sanitised. Addresses come from the RFC 5737 documentation ranges.
The SysmonDrv service terminated unexpectedly. It has done this 1 time(s). Everything else in the log line is context.
Most of the time it is one of these.
What gives it awayA security or logging service terminating with no restart, followed by other activity on the machine.
ATT&CK T1562.001What gives it awayAn event forwarding or SIEM agent terminating, producing a visible gap in collected data.
ATT&CK T1562.002Get-WinEvent -FilterHashtable @{LogName='System'; Id=7034} -MaxEvents 50 | Select-Object TimeCreated, Message | Format-List Get-Service | Where-Object { $_.StartType -eq 'Automatic' -and $_.Status -ne 'Running' } | Select-Object Name, DisplayName, Status Both record a service terminating unexpectedly. 7031 means Windows has a recovery action configured and will do something — usually restart it. 7034 means there is no recovery action, so the service stays stopped until something or someone starts it again.
Open Services, find the service, and use the Recovery tab to set the first, second, and subsequent failure actions to Restart the Service. From then on the same crash produces Event 7031 with a restart rather than 7034 with nothing.
Last reviewed 28 August 2026