Change Wake on lan setting from windows.
-
Hi All, I want to know ,Is that possible to get any setting from CMOS? Actualy I want to Get and Set "Wake on LAN" setting in CMOS. Right now I have to set it manualy. I want to make a small program that can get status of Wake on lan setting and set or reset the same setting too.Is there any method available? Thank you. Jay.
-
Hi All, I want to know ,Is that possible to get any setting from CMOS? Actualy I want to Get and Set "Wake on LAN" setting in CMOS. Right now I have to set it manualy. I want to make a small program that can get status of Wake on lan setting and set or reset the same setting too.Is there any method available? Thank you. Jay.
onlyjaypatel wrote:
I want to make a small program that can get status of Wake on lan setting and set or reset the same setting too.Is there any method available?
One is using
WMI
withGUID_POWER_DEVICE_WAKE_ENABLE
. Another way is the HKLM\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002bE10318}\0001\PnPCapabilities value."Old age is like a bank account. You withdraw later in life what you have deposited along the way." - Unknown
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
-
Hi All, I want to know ,Is that possible to get any setting from CMOS? Actualy I want to Get and Set "Wake on LAN" setting in CMOS. Right now I have to set it manualy. I want to make a small program that can get status of Wake on lan setting and set or reset the same setting too.Is there any method available? Thank you. Jay.
Unlikely, since that's a BIOS function, so there's no way of guaranteeing that the BIOS on the computer supports that feature. If you know the exact hardware, then theoretically you could access and modify the low level CMOS RAM yourself (I guess you'd need to write a device driver to achieve this!)
Help me! I'm turning into a grapefruit! Buzzwords!
-
onlyjaypatel wrote:
I want to make a small program that can get status of Wake on lan setting and set or reset the same setting too.Is there any method available?
One is using
WMI
withGUID_POWER_DEVICE_WAKE_ENABLE
. Another way is the HKLM\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002bE10318}\0001\PnPCapabilities value."Old age is like a bank account. You withdraw later in life what you have deposited along the way." - Unknown
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
Thanx for reply. I have tried both your ways but in both case the BIOS setting must ON. In my case i have to set "Wake on LAN from s5" to "Power ON" in bios. Only windows setting is not working. Any method to set "Wake on LAN from s5" to "Power ON" in bios. Thanx Jay.