Site icon EfmSoft

What does NTSTATUS 0xC0000262 (STATUS_DRIVER_ORDINAL_NOT_FOUND) mean?

 
Previous Next
STATUS_INVALID_PLUGPLAY_DEVICE_PATH STATUS_DRIVER_ENTRYPOINT_NOT_FOUND

STATUS_DRIVER_ORDINAL_NOT_FOUND

The driver binary and its dependency are incompatible

PE images can import functions by name or ordinal. An ordinal is meaningful only for the exact export table expected by the producer. This status occurs when loader resolution cannot find the requested ordinal in a dependent kernel image, often after mixing binaries from different versions or loading a third-party module built against an unsupported dependency.

Copying a DLL or SYS file from another computer is unsafe and can create a larger version mismatch. Determine the importing image and dependency from loader diagnostics, then restore a matched driver package or operating-system component. Kernel drivers should use documented WDK interfaces instead of private ordinal contracts.

What to inspect

References


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

Exit mobile version