| Previous | Next |
| STATUS_NDIS_BUFFER_TOO_SHORT | STATUS_NDIS_ADAPTER_REMOVED |
STATUS_NDIS_INVALID_OID
The requested OID is not supported by this adapter path
STATUS_NDIS_INVALID_OID says that the request identifier itself is not available through the selected network interface. The OID can be valid in an NDIS header yet unavailable for a particular miniport, media type, feature set, or NDIS role.
Feature probing must therefore use the adapter capability contract, including its supported OID list where applicable. Treating every valid-looking OID as universally supported produces misleading retries and can conceal a mismatched driver role.
Evidence that narrows it
- Log the OID value, request class, miniport or filter role, and advertised supported capability set.
- Check whether the target is a physical NIC, a virtual adapter, a Wi-Fi miniport, a WAN device, or a switch-related port.
- Separate an unknown OID from a known OID whose data is invalid or whose operation is unsupported in the current state.
References
- Microsoft: Handling OID requests in a miniport adapter
- Microsoft: NDIS_OID_REQUEST structure
- Microsoft: MiniportOidRequest
Looking for a different code? Search another status or error code.