Service control sent successfully.
Use with 7036 to understand who initiated service state changes.
No standalone alerting. Correlate with 7036.
param1param2Computer Starting points — adapt the log source, projected fields and thresholds for your environment.
Event
| where EventLog == "System" and EventID == 7035 // The service was successfully sent a start or stop control
// EventData holds: param1, param2, Computer
| project TimeGenerated, Computer, RenderedDescription
| sort by TimeGenerated desc
index=* sourcetype="WinEventLog:System" EventCode=7035
| stats count earliest(_time) as first_seen latest(_time) as last_seen by ComputerName
| sort - count `# The service was successfully sent a start or stop control — add EventData fields: param1, param2, Computer`
The service was successfully sent a start or stop control. Service control sent successfully.
Event 7035 is written to the System channel by Service Control Manager / Kernel. Logged by default in the System channel; no audit policy required.
No standalone alerting. Correlate with 7036.