What does NTSTATUS 0x00293001 (STATUS_RTPM_CONTEXT_COMPLETE) mean?

 
Previous Next
STATUS_RTPM_CONTEXT_CONTINUE STATUS_HV_PENDING_PAGE_REQUESTS

STATUS_RTPM_CONTEXT_COMPLETE

Remote TPM context exchange is complete

STATUS_RTPM_CONTEXT_COMPLETE is the completion-side counterpart to a continued remote TPM exchange. It indicates that the remote operation reached its terminal state and the caller should now process the returned result rather than sending the context again.

This status is useful when logging multi-step TPM workflows because it marks the boundary between transport/context handling and ordinary result validation. Replaying a completed context can produce confusing follow-on failures.

Diagnostic focus

  • Stop context continuation once this status is received.
  • Validate the final TPM result, PCR output, or provider result separately from transport completion.
  • Make retry logic idempotent; avoid resubmitting an already completed remote context.

References


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