What does HRESULT 0x00041732 (FILTER_S_FULL_CONTENTSCAN_IMMEDIATE) mean?

 
Previous Next
FILTER_S_PARTIAL_CONTENTSCAN_IMMEDIATE FILTER_S_CONTENTSCAN_DELAYED

FILTER_S_FULL_CONTENTSCAN_IMMEDIATE

Immediate full content scan is required

FILTER_S_FULL_CONTENTSCAN_IMMEDIATE is HRESULT 268082 (0x00041732) from Indexing Service. The documented description is “A full content scan of the disk needs to be scheduled for immediate execution.” The severity bit indicates a nonfailure result, but the value carries a specific condition that must not be collapsed into plain S_OK.

In the legacy Indexing Service or IFilter pipeline, this result means that a full content scan of the disk needs to be scheduled for immediate execution. Before reporting completion, the caller must reconcile the code-specific state transition and every usable output.

What must be true before accepting it

Verify that a full rebuild is justified and sufficient storage and maintenance capacity exist. Without that proof, this result can mask a caller error even though HRESULT failure severity is not set.

Reconcile side effects associated with this result before compensation or a second invocation is attempted.

Where the status is encountered

  • This result can be returned during legacy Indexing Service catalog processing; log the exact method and object state instead of interpreting the constant outside that contract.
  • It can be returned during IFilter text and property extraction; log the exact method and object state instead of interpreting the constant outside that contract.
  • It can be returned during search enumeration, scan scheduling, or catalog administration; log the exact method and object state instead of interpreting the constant outside that contract.

Evidence to preserve

  • Preserve catalog and schema version.
  • Preserve reason partial scan is insufficient.
  • Preserve estimated document count.
  • Preserve free disk and temporary-space budget.
  • Preserve scan checkpoints and failures.

Correct handling and recovery

Schedule a full scan immediately, coordinate with backup and query load, and monitor disk growth, filter failures, and completion checkpoints.

Practical scenario

A schema change invalidates every indexed property. The service starts a full scan in the maintenance window and keeps the previous catalog available until the replacement is complete.

Difference from nearby results

Correctly separating it from neighboring values selects the proper continuation and cleanup path.

References


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