If you don’t see it in System logs, the most likely causes are: the Service Control Manager (SCM) provider is disabled, the System log is full or overwritten too quickly, or domain GPOs have altered event logging behavior. Event 7036 comes from the Service Control Manager (SCM), not from Audit Policy. On Windows 11 desktop SKUs, 7036 events are not logged by default if the System log is set to only capture warnings/errors. Even if you enabled auditing locally, a domain‑level policy can override event logging configuration. Also, if your event viewer filter is scoped to “Critical/Warning/Error,” you won’t see 7036 because it is an Informational event.
So the key is to confirm the SCM provider is enabled and that the System log is configured to capture informational events.
- Check System Log Settings
- In Event Viewer, right‑click System → Properties.
- Ensure Enable logging of Information events is checked.
- Increase the log size (e.g., 64 MB) and set it to Overwrite events as needed.
- Verify SCM Provider
- Open an elevated PowerShell and run: powershell
wevtutil gp System | findstr /i "Service Control Manager" - This confirms whether the SCM provider is enabled. If disabled, re‑enable with: powershell
- Open an elevated PowerShell and run: powershell
If you find this information useful to some extent, please accept the answer so that your experience with the issue would help contribute to the whole community. Thank you :)
Vivian