A security service prevented from starting.
What gives it awayA 7000 for antivirus or EDR at every boot, particularly with an access-denied or missing-file error.
ATT&CK T1562.001Nothing matches that yet. Tell us what you were looking for and it goes on the list.
Windows System Log · Event 7000
Windows tried to start a service and it would not start. The error text at the end of the message is the actual answer — the event number tells you nothing that the error does not tell you better.
Also written as 7000Event ID 7000
Something that should have started when Windows booted did not. If a program is not working properly, this may be why. The message usually says what went wrong.
Frequent after uninstalls that leave service registrations behind, and after driver signing enforcement blocks a kernel service. A security agent failing to start at boot deserves the same scrutiny as one that crashed.
Sanitised. Addresses come from the RFC 5737 documentation ranges.
The SysmonDrv service failed to start due to the following error:
The system cannot find the file specified. Everything else in the log line is context.
The system cannot find the file specifiedThe service is registered but its executable is gone — usually a partial uninstall. Access is deniedA permissions problem on the binary or the service account. The service did not respond to the start or control request in a timely fashionA timeout, which is often just a slow boot rather than a real fault. A device attached to the system is not functioningTypically a driver service whose hardware is absent or faulty. The specified service has been marked for deletionAn uninstall is incomplete and needs a reboot to finish. Most of the time it is one of these.
What gives it awayA 7000 for antivirus or EDR at every boot, particularly with an access-denied or missing-file error.
ATT&CK T1562.001What gives it awayA missing-file error for a service that used to work, with no matching uninstall.
ATT&CK T1543.003Get-WinEvent -FilterHashtable @{LogName='System'; Id=7000,7009,7011} -MaxEvents 50 | Select-Object TimeCreated, Id, Message | Format-List index=wineventlog EventCode=7000 | rex "The (?<service>.+?) service failed to start" | stats count by service dest | sort -count The service registration survived but its program did not, which almost always means an uninstall did not finish. Either reinstall the software so the file comes back, or remove the leftover registration with `sc delete <servicename>` from an elevated command prompt. Check the registered path first so you know which you are dealing with.
Because at boot it is racing something it depends on — a network connection, another service, or a disk that is not ready yet. Setting the service to Automatic (Delayed Start), or declaring the dependency properly, usually resolves it.
An uninstall removed the service but something still had a handle open, so Windows deferred the removal until the next reboot. Restart the machine and the message goes away; if it persists after a reboot, something is re-registering the service.
Last reviewed 28 August 2026