Query Details

Service Start Failure

Query

Use Case: Identify and analyze instances of Service Control Manager events where a service fails to start within the past 7 days on Windows systems, specifically focusing on Event ID 7000.

Query:

WindowsEvent('System', 7d)
| where tostring( EventId) == '7000'

Explanation

The query is looking for instances of Service Control Manager events on Windows systems where a service failed to start within the past 7 days. It specifically focuses on events with Event ID 7000.

Details

Ugur Koc profile picture

Ugur Koc

Released: February 4, 2024

Tables

WindowsEvent

Keywords

WindowsEvent,System,EventId

Operators

|wheretostring==

Actions