I am querying a NDIS miniport driver for OID_GEN_SUPPORTED_GUID and it
returns status 0xC00000BB (STATUS_NOT_SUPPORTED). The driver supports
this OID.

I see that the query function is not being called in my NDIS driver.

Is there any reason why this OID could be blocked/not passed on to the
NDIS miniport driver by any other IM/protocol driver?

I tried quering using RawEther and WinPCAP with the same result.

Thanks,

..Ram

Re: OID_GEN_SUPPORTED_GUID Query Failure by Stephan

Stephan
Fri Dec 22 09:54:07 CST 2006

There are a number of possible reasons, e.g., make sure
OID_GEN_SUPPORTED_GUIDS
is included in the OID_GEN_SUPPORTED_LIST.

Try the OIDScope tool and see whether it shows OID_GEN_SUPPORTED_GUIDS,
see

http://www.pcausa.com/Utilities/ndistools.htm

You should also run the NDISTest tool against the miniport driver, see

"Testing Network Drivers with the NDIS Test Tool"
http://www.wd-3.com/archive/NDISTest.htm


"Using NDISTest During Driver Development"
http://www.microsoft.com/whdc/DevTools/tools/NDIStest.mspx

Stephan
---
Ram wrote:
> I am querying a NDIS miniport driver for OID_GEN_SUPPORTED_GUID and it
> returns status 0xC00000BB (STATUS_NOT_SUPPORTED). The driver supports
> this OID.
>
> I see that the query function is not being called in my NDIS driver.
>
> Is there any reason why this OID could be blocked/not passed on to the
> NDIS miniport driver by any other IM/protocol driver?
>
> I tried quering using RawEther and WinPCAP with the same result.
>
> Thanks,
>
> ..Ram