Wake on Lan

Hi All

Is There any way to find out that my NIC card supports Wake On Lan
or not.I have to Find out that whether my lan card will support it or not.

Please Help me to find out the solution.

Thanks
Niraj Jha
Pure Thoughts Technology

The Wake-on-LAN checkbox in the Device Manager works via WMI. I have
forgotten the exact property name.

Maxim Shatskih, Windows DDK MVP
StorageCraft Corporation
xxxxx@storagecraft.com
http://www.storagecraft.com

----- Original Message -----
From: “Niraj Jha”
To: “Windows System Software Devs Interest List”
Sent: Friday, December 16, 2005 12:42 PM
Subject: [ntdev] Wake on Lan

Hi All

Is There any way to find out that my NIC card supports Wake On Lan
or not.I have to Find out that whether my lan card will support it or not.

Please Help me to find out the solution.

Thanks
Niraj Jha
Pure Thoughts Technology


Questions? First check the Kernel Driver FAQ at
http://www.osronline.com/article.cfm?id=256

You are currently subscribed to ntdev as: unknown lmsubst tag argument: ‘’
To unsubscribe send a blank email to xxxxx@lists.osr.com

The GUID is GUID_POWER_DEVICE_WAKE_ENABLE. For completeness, the WMI
guid for exposing the ability for a device to idle out when the machine
is running is GUID_POWER_DEVICE_ENABLE. Both are defined in wdmguid.h

d

-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com] On Behalf Of Maxim S.
Shatskih
Sent: Friday, December 16, 2005 12:16 PM
To: Windows System Software Devs Interest List
Subject: Re: [ntdev] Wake on Lan

The Wake-on-LAN checkbox in the Device Manager works via WMI. I have
forgotten the exact property name.

Maxim Shatskih, Windows DDK MVP
StorageCraft Corporation
xxxxx@storagecraft.com
http://www.storagecraft.com

----- Original Message -----
From: “Niraj Jha”
To: “Windows System Software Devs Interest List”
Sent: Friday, December 16, 2005 12:42 PM
Subject: [ntdev] Wake on Lan

Hi All

Is There any way to find out that my NIC card supports Wake On
Lan
or not.I have to Find out that whether my lan card will support it or
not.

Please Help me to find out the solution.

Thanks
Niraj Jha
Pure Thoughts Technology


Questions? First check the Kernel Driver FAQ at
http://www.osronline.com/article.cfm?id=256

You are currently subscribed to ntdev as: unknown lmsubst tag argument:
‘’
To unsubscribe send a blank email to xxxxx@lists.osr.com


Questions? First check the Kernel Driver FAQ at
http://www.osronline.com/article.cfm?id=256

You are currently subscribed to ntdev as: xxxxx@microsoft.com
To unsubscribe send a blank email to xxxxx@lists.osr.com

Thanks sir

but sir is it possible to use *SetupDiGetDeviceRegistryProperty.*I am
missing its 3rd argument that will fetch the Wake on Lan enability. is it
possible.

Again Thanks for your kind Response.

Niraj Jha
Pure Thoughts Technology

On 12/17/05, Doron Holan wrote:
>
> The GUID is GUID_POWER_DEVICE_WAKE_ENABLE. For completeness, the WMI
> guid for exposing the ability for a device to idle out when the machine
> is running is GUID_POWER_DEVICE_ENABLE. Both are defined in wdmguid.h
>
> d
>
> -----Original Message-----
> From: xxxxx@lists.osr.com
> [mailto:xxxxx@lists.osr.com] On Behalf Of Maxim S.
> Shatskih
> Sent: Friday, December 16, 2005 12:16 PM
> To: Windows System Software Devs Interest List
> Subject: Re: [ntdev] Wake on Lan
>
> The Wake-on-LAN checkbox in the Device Manager works via WMI. I have
> forgotten the exact property name.
>
> Maxim Shatskih, Windows DDK MVP
> StorageCraft Corporation
> xxxxx@storagecraft.com
> http://www.storagecraft.com
>
> ----- Original Message -----
> From: “Niraj Jha”
> To: “Windows System Software Devs Interest List”
> Sent: Friday, December 16, 2005 12:42 PM
> Subject: [ntdev] Wake on Lan
>
>
> Hi All
>
> Is There any way to find out that my NIC card supports Wake On
> Lan
> or not.I have to Find out that whether my lan card will support it or
> not.
>
> Please Help me to find out the solution.
>
> Thanks
> Niraj Jha
> Pure Thoughts Technology
>
> —
> Questions? First check the Kernel Driver FAQ at
> http://www.osronline.com/article.cfm?id=256
>
> You are currently subscribed to ntdev as: unknown lmsubst tag argument:
> ‘’
> To unsubscribe send a blank email to xxxxx@lists.osr.com
>
>
>
> —
> Questions? First check the Kernel Driver FAQ at
> http://www.osronline.com/article.cfm?id=256
>
> You are currently subscribed to ntdev as: xxxxx@microsoft.com
> To unsubscribe send a blank email to xxxxx@lists.osr.com
>
>
> —
> Questions? First check the Kernel Driver FAQ at
> http://www.osronline.com/article.cfm?id=256
>
> You are currently subscribed to ntdev as: unknown lmsubst tag argument: ‘’
> To unsubscribe send a blank email to xxxxx@lists.osr.com
>

No, you can’t use SetupDi to get this value…BUT you can take the device instance path (e.g. <id><instance> and pass it to WmiDevInstToInstanceName (in inc\w2k\wmium.h) to get the WMI instance name. from there you can use the COM APIs that expose WMI/WBEM

d

________________________________________
From: xxxxx@lists.osr.com [mailto:xxxxx@lists.osr.com] On Behalf Of Niraj Jha
Sent: Friday, December 16, 2005 10:53 PM
To: Windows System Software Devs Interest List
Subject: Re: [ntdev] Wake on Lan

Thanks sir
??
??? but sir is it?possible to use SetupDiGetDeviceRegistryProperty.I am missing its? 3rd?argument that will fetch the Wake on Lan enability. is it possible.
?
Again Thanks for your kind Response.
?
Niraj Jha
Pure Thoughts Technology??

?
On 12/17/05, Doron Holan wrote:
The GUID is GUID_POWER_DEVICE_WAKE_ENABLE.??For completeness, the WMI
guid for exposing the ability for a device to idle out when the machine
is running is GUID_POWER_DEVICE_ENABLE.??Both are defined in wdmguid.h

d

-----Original Message-----
From: xxxxx@lists.osr.com
[mailto: xxxxx@lists.osr.com] On Behalf Of Maxim S.
Shatskih
Sent: Friday, December 16, 2005 12:16 PM
To: Windows System Software Devs Interest List
Subject: Re: [ntdev] Wake on Lan

?? The Wake-on-LAN checkbox in the Device Manager works via WMI. I have
forgotten the exact property name.

Maxim Shatskih, Windows DDK MVP
StorageCraft Corporation
xxxxx@storagecraft.com
http://www.storagecraft.com

----- Original Message -----
From: “Niraj Jha”
To: “Windows System Software Devs Interest List”
Sent: Friday, December 16, 2005 12:42 PM
Subject: [ntdev] Wake on Lan

Hi All

??? Is There any way to find out that my NIC card supports Wake On
Lan
or not.I have to Find out that whether my lan card will support it or
not.

??Please Help me to find out the solution.

Thanks
Niraj Jha
Pure Thoughts Technology


Questions? First check the Kernel Driver FAQ at
http://www.osronline.com/article.cfm?id=256

You are currently subscribed to ntdev as: unknown lmsubst tag argument:
‘’
To unsubscribe send a blank email to xxxxx@lists.osr.com


Questions? First check the Kernel Driver FAQ at
http://www.osronline.com/article.cfm?id=256

You are currently subscribed to ntdev as: xxxxx@microsoft.com
To unsubscribe send a blank email to xxxxx@lists.osr.com


Questions? First check the Kernel Driver FAQ at http://www.osronline.com/article.cfm?id=256

You are currently subscribed to ntdev as: unknown lmsubst tag argument: ‘’
To unsubscribe send a blank email to xxxxx@lists.osr.com

— Questions? First check the Kernel Driver FAQ at http://www.osronline.com/article.cfm?id=256 You are currently subscribed to ntdev as: unknown lmsubst tag argument: ‘’ To unsubscribe send a blank email to xxxxx@lists.osr.com