| Previous | Next |
| WER_S_ASSERT_CONTINUE | WER_S_REPORT_UPLOADED_CAB |
WER_S_THROTTLED
WER report was throttled
WER_S_THROTTLED is HRESULT 1769483 (0x001B000B) from winerror.h. AllStat describes it as “Report was throttled.” In the Windows Error Reporting collection, queue, upload, archive, assertion, or debugging workflow, the value reports a nonfailure state that must not be collapsed into plain S_OK.
Accepting this result requires proving the documented state rather than checking only SUCCEEDED(hr).
Where the status is encountered
- WerReportSubmit and WER store processing; capture the exact API, object, and phase because the same numeric success severity does not define the state by itself.
- Crash, hang, assertion, and application-failure reporting;
- Enterprise policy controlling WER queue, archive, upload, debugger, and throttling;
Keep it attached to the operation that returned it. Interpreting it outside that API contract can turn a normal continuation or partial result into an incorrect retry or false completion.
What must be true before accepting it
Verify that the report matches a throttling rule and application code does not defeat it with repeated resubmissions. Without the boundary check, the HRESULT can hide stale output, pending ownership, or omitted work.
Also confirm that returned outputs belong to the current operation generation and were not inherited from an earlier attempt.
Difference from nearby results
Suspension affects upload generally; throttling suppresses this report or bucket because of rate policy.
Precise classification of it selects the correct wait, stop, retry, cleanup, or disclosure path.
Correct handling and recovery
Accept throttling, retain the bucket and count locally if allowed, and wait for policy or time-window change. Investigate high-frequency causes independently.
Continuation after it within the documented state machine is different from restarting the entire operation.
Practical scenario
A crash loop produces hundreds of identical reports. WER throttles the bucket while monitoring still counts local occurrences for remediation.
References
- Microsoft: WER error codes
- Microsoft: WerReportSubmit
- Microsoft: Windows Error Reporting
- Microsoft: HRESULT values
Looking for a different code? Search another status or error code.