Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have to stop windows from going into sleep when my program is running.

And I don't only want to prevent the sleep-timer, I also want to cancel the sleep-event if I press the sleep-button or in any other way actively tell the computer to sleep. Therefore SetThreadExecutionState is not enough.

Or...I don't actually have to prevent the sleep completely, only delay it 5-10sec to allow my program to finish a task.

(I know that this is bad program behavior but it's only for personal use.)

share|improve this question

5 Answers

up vote 11 down vote accepted

I had a problem like this with a hardware device connected via usb. XP /Vista would sleep/hibernate right in the middle of ... Great you say, when it resumes it can just continue. If the hardware is still connected!!! Users have the habit of pulling cables out whenever they feel like it.

You need to handle XP and Vista

Under XP trap the WM_POWERBROADCAST and look for the PBT_APMQUERYSUSPEND wparam.

   // See if bit 1 is set, this means that you can send a deny while we are busy
   if (message.LParam & 0x1)
   {
      // send the deny message
      return BROADCAST_QUERY_DENY;
   } // if
   else
   {
      return TRUE;
   } // else

Under Vista use SetThreadExecutionState like this

// try this for vista, it will fail on XP
if (SetThreadExecutionState(ES_CONTINUOUS | ES_SYSTEM_REQUIRED | ES_AWAYMODE_REQUIRED) == NULL)
{
   // try XP variant as well just to make sure 
   SetThreadExecutionState(ES_CONTINUOUS | ES_SYSTEM_REQUIRED);
}  // if

and when you app has finished set it back to normal

// set state back to normal
SetThreadExecutionState(ES_CONTINUOUS);
share|improve this answer
Hmm, i was wrong, SetThreadExecutionState actually did work, just had to set the ES_AWAYMODE_REQUIRED also. The strange thing is that my monitor goes black but the system never fully goes to sleep. – ping Mar 10 '09 at 8:34
That's what away mode is all about. The idea is that the computer would normally be sleeping, so it's made to look like it's sleeping. Then when the background task is done (e.g. recording a TV show), the app turns off the system required and away mode bits and the computer actually does go to sleep. – Edward Brey Dec 24 '10 at 12:00
>The strange thing is that my monitor goes black but the system never fully goes to sleep --- maybe that's just the default empty screen saver? – himself Jun 17 '12 at 8:49
1  
Here's a link to the Window Message to save anyone the google: msdn.microsoft.com/en-us/library/windows/desktop/… – chaz Jun 18 '12 at 19:33

It's different for Vista/Win2008 and XP, see this article:

http://msdn.microsoft.com/en-us/magazine/cc163386.aspx

share|improve this answer

Using PowerCreateRequest, PowerSetRequest, and PowerClearRequest functions is the preferred method. Details and sample code (C/C#) are inside http://msdn.microsoft.com/en-us/library/windows/hardware/gg463205.aspx

share|improve this answer

How about waking it back up if it goes to sleep?

http://www.enterprisenetworksandservers.com/monthly/art.php?1049

share|improve this answer
Not possible, i have to disable a wifi-device before the computer goes to sleep. Otherwise the device will become unusable when i wake the computer up again. Intel is slow with win7 drivers :( – ping Mar 10 '09 at 7:53

The same technique applies as for preventing the screensaver should be used. See http://stackoverflow.com/questions/463813/programmatically-prevent-windows-screensaver-from-starting.

Note that some security settings can override this (forcing computers to lock after a certain time is one).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.