vote up 2 vote down star

Like most laptops, mine (a Dell Inspiron 1420) has a small button which can be used to turn the wifi card on and off. Is there any way to detect that the radio has been turned off in a Win32 C program or service? I'm looking for a better way than to get the list of the visible access points, something that only depends on the state of that button.

Update - the solution is monitoring hardware events with a Windows service. You can get some code that does that here.

Update 2 - after more research it seems that the hardware events are sent for the Bluetooth device that is disabled when you hit the radio off switch. So, hardware monitoring works only for laptops that have both internal Bluetooth and wifi (probably on the same card). I never found a definite solution to this problem and have to live with the Bluetooth-based heuristic.

flag

60% accept rate
You should answer your question with the code from CodeProject (or the link you added). That way, it'll disappear from the Unanswered questions list as soon as someone votes up your answer (or you accept your answer). – Jon Bright Feb 9 at 11:24
Can you please either accept my answer or post a link to the answer you found and I'll upvote it? It's important to have the solution on the same page as the question, for times when a future visitor with the same problem finds this page. – rwmnau Feb 17 at 18:15

1 Answer

vote up 1 vote down check

I think it just disables the card in Windows - would this be different than detecting if there's a WLAN card in the the device manager that's currently disabled?

I'm a VB programmer, so I can't help with the specifics, but just wanted to give somewhere to start.

link|flag
I really wish it were that simple, but it isn't. Turning off the card does make a similar sound like the one made when you disconnect a USB device, but the wifi device doesn't go away. – gooli Jan 18 at 16:29
Actually, that put me on the right track - thanks! – gooli Jan 18 at 17:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.