Verified diagnostic signature
Windows Service Control Manager could not start or keep the service running.
Match output from windows-service-control, understand the likely cause, then continue with sourced, read-only checks.
- Confidence
- high
- Platforms
- windows
- Verified
- 2026-07-24
Recognized output
Signature matched locally
Error 1067OneLiners matches this pattern in your browser. Your pasted output is not stored or indexed.
Likely causes
What usually produces this signal
- Application crash
- Startup timeout
- Dependency failure
- Account or configuration problem
Safe next checks
Collect evidence before changing the system
List running Windows services
Get-Service | Where-Object Status -eq 'Running'The output matches the expected target and exits without an error.
List stopped Windows services
Get-Service | Where-Object Status -eq 'Stopped'The output matches the expected target and exits without an error.
Show the latest Windows system errors
Get-WinEvent -FilterHashtable @{LogName='System'; Level=2} -MaxEvents 20The output matches the expected target and exits without an error.