What does NTSTATUS 0xC0000512 (STATUS_ENCLAVE_IS_TERMINATING) mean?

 
Previous Next
STATUS_ENCLAVE_NOT_TERMINATED STATUS_SMB1_NOT_AVAILABLE

STATUS_ENCLAVE_IS_TERMINATING

The enclave is already leaving the active state

STATUS_ENCLAVE_IS_TERMINATING identifies a specific Windows status in the secure enclave lifecycle path. New access was attempted after termination began. The correct response is usually to stop issuing work and drain outstanding operations rather than retry indefinitely.

Correlate the first termination trigger with later callers and enforce a single lifecycle owner for admission and teardown.

What to preserve before changing the system

  • The exact API, caller, target object, original NTSTATUS value, and any nested error or activity ID.
  • the relevant process token, package/job/enclave identity, lifecycle state, and policy or mitigation settings.
  • operational event logs and a timeline showing the first transition into the failing state.

References


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