What does NTSTATUS 0xC002003E (RPC_NT_ENTRY_NOT_FOUND) mean?

 
Previous Next
RPC_NT_ENTRY_ALREADY_EXISTS RPC_NT_NAME_SERVICE_UNAVAILABLE

RPC_NT_ENTRY_NOT_FOUND

The requested RPC entry name does not exist

This status means the name-service lookup reached a valid provider but no entry matched the requested name. It is different from unsupported name syntax or unavailable name service.

Check whether the server exported the entry, whether the client uses the same syntax and namespace, and whether cleanup or unexport removed it.

What to inspect

  • Compare export and import entry names byte-for-byte.
  • Check name-service availability separately from entry existence.
  • Use endpoint mapper lookup if the service does not rely on name-service entries.

References


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