up vote 9 down vote favorite
2
share [g+] share [fb]

OK that does it. For the umpteenth time my laptop just shut down in the middle of my game because my power cable had disconnected without me noticing it.

Now I want to write a little C# program that detects when my power cable disconnects and then emits a nice long System beep. What API could I use for that?

link|improve this question

feedback

6 Answers

up vote 9 down vote accepted

This should be trivial to implement using the SystemInformation.PowerStatus property. And even though that lives in Windows.Forms, it should be perfectly usable from a system service.

For a solution that also works on the Compact Framework, see HOWTO: Get the Device Power Status

link|improve this answer
feedback

SystemEvents.PowerModeChanged. You will need to use either GetSystemPowerStatus (see link in one of the answers) or SystemInformation.PowerStatus (link is in another answer) in the handler to check what happened.

link|improve this answer
feedback

This will probably get closed as not-programming-related, but you may want to check your BIOS setttings.

My Lenovo laptop does exactly what you're suggesting natively. There is a setting in my BIOS for beeping on power status change.

link|improve this answer
Notice how he cleverly worded it as a programming question. I can imagine other circumstances where a program would want to know if it was running on battery power, so it's a good question to have in the database. – Mark Ransom Dec 7 '08 at 19:25
feedback

To continue BQ's answer, there are power settings in Windows that can be changed when the power cord is removed. Since I sometimes work with it removed I didn't change the power settings on my machine, but when the battery approaches 15% the screen brightness is set to the lowest level, making it possible to work (and easily changeable with Fn-Home key) but very noticeable so that I plug the cable back in time.

link|improve this answer
feedback

This may very much depend on your exact operating system. Here are some calls for windows XP, I am sure you can find the Vista equivalents:

http://msdn.microsoft.com/en-us/library/ms704147(VS.85).aspx

link|improve this answer
feedback

Can't think of anything directly accessible via the .NET framework, but I do know that Intel has the Mobile Platform SDK with .NET libraries that should provide this information to you. It's possible AMD has an equivilent somewhere.

Intel Mobile Platform SDK

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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