vote up 1 vote down star
1

What API or tools can I use to query the capabilities of the system and choose the most appropriate on for putting the PC to Sleep, Hibernate or shutdown mode?

Thanks for any pointers.

flag

65% accept rate

2 Answers

vote up 5 vote down check

Look at SystemInformation.PowerStatus, then you can call Application.SetSuspendState to put the PC to Sleep or Hibernate like:

Application.SetSuspendState(PowerState.Hibernate, true, true);
link|flag
See msdn.microsoft.com/en-us/library/… for the full details – John Dec 29 '08 at 16:39
vote up 1 vote down

I found this from googling - just tried it and it worked fine:

http://gammadyne.com/cmdline.htm#sleep

link|flag

Your Answer

Get an OpenID
or

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