| Previous | Next |
| WER_S_THROTTLED | ERROR_FLT_IO_COMPLETE |
WER_S_REPORT_UPLOADED_CAB
WER report and CAB payload were uploaded
WER_S_REPORT_UPLOADED_CAB is HRESULT 1769484 (0x001B000C) from winerror.h. AllStat describes it as “Report was uploaded with cab.” 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.
The status must be preserved until its code-specific output and next action have been processed.
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 this result 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 CAB contains the intended attachments and no sensitive file was included outside consent or policy. That proof prevents usable partial state from being confused with full completion.
Also confirm that returned outputs belong to the current operation generation and were not inherited from an earlier attempt.
Correct handling and recovery
Finalize submission, retain the report ID and attachment manifest hash, and remove temporary packaging artifacts.
Do not use an unchanged tight retry loop for it; it can duplicate effects or conceal a terminal state.
Difference from nearby results
WER_S_REPORT_UPLOADED confirms report upload; this status specifically confirms upload with the CAB package.
Precise classification of this result selects the correct wait, stop, retry, cleanup, or disclosure path.
Practical scenario
A hang report includes a minidump and logs in a CAB. After upload, the app deletes its staging directory and records the manifest.
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.