Site icon EfmSoft

What does HRESULT 0x001B0006 (WER_S_DISABLED_ARCHIVE) mean?

 
Previous Next
WER_S_DISABLED_QUEUE WER_S_REPORT_ASYNC

WER_S_DISABLED_ARCHIVE

WER uploaded the report but did not archive it

WER_S_DISABLED_ARCHIVE is HRESULT 1769478 (0x001B0006) from winerror.h. AllStat describes it as “Report was uploaded, but not archived due to archiving being disabled.” 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 high-level request that returned this result is complete only after the caller validates the represented condition.

What must be true before accepting it

Verify that the upload succeeded and the absence of a local archive is expected under effective policy. The boundary determines whether the caller continues, waits, falls back, or ends the operation.

Also confirm that returned outputs belong to the current operation generation and were not inherited from an earlier attempt.

Where the status is encountered

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.

Correct handling and recovery

Close submission successfully, record that no archive copy exists, and do not later search the WER archive as proof of delivery.

Do not use an unchanged tight retry loop for this HRESULT; it can duplicate effects or conceal a terminal state.

Practical scenario

A privacy policy disables local archives while permitting upload. Support uses the report ID rather than expecting a local ReportArchive folder.

Difference from nearby results

WER_S_REPORT_UPLOADED may also leave an archive; this status adds the explicit no-archive condition.

Using one generic success branch for this HRESULT and its neighbor can lose output, repeat work, or misreport completion.

References


Looking for a different code? Search another status or error code.

Exit mobile version