Site icon EfmSoft

What does NTSTATUS 0xC000017C (STATUS_KEY_DELETED) mean?

 
Previous Next
STATUS_INVALID_MEMBER STATUS_NO_LOG_SPACE

STATUS_KEY_DELETED

The key handle outlived the key namespace entry

Registry deletion and handle lifetime are separate. Once a key is marked for deletion, existing handles can remain in code paths, but further operations through them can fail because the namespace object is no longer a valid target.

This commonly exposes a race between configuration cleanup and another thread that caches a key handle. Reopening the same path may also fail until outstanding handles are closed and deletion completes, so immediate create-delete-create loops require careful synchronization.

What to inspect

References


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

Exit mobile version