Is there a recommended way to prevent the Windows screensaver from starting? The closest thing I've found is this article, but what I would really like to do is just tell Windows that the computer isn't idle rather than fooling with the currently set screensaver values.
feedback
|
|
For testing, I set the screensaver to 1 minute and required a password. I tried capturing SC_SCREENSAVE and returning -1 in VB .Net. As commented, it works when there is no screensaver password but fails if the screensaver password is active. (I tried it in Windows XP). I also put this into a Timer's tick event, every 1000 milliseconds:
It doesn't work. The cursor jiggles back and forth and after 1 minute the screensaver flashes on for a short instance and then turns off. The screensaver turns on for only a moment, not long enough to require a password. But still, the flash is ugly. Then I tried using user32.dll's SetCursorPos and GetCursorPos. You can look them up at pinvoke. Same result as above. Then I peeked at the code of "JiggleMouse" mentioned elsewhere in this question. JiggleMouse uses SendInput. SendInput works! No flash of the screensaver. I put a call to SendInput inside of a Timer that triggers every 50 seconds (just less than the minimum screensaver timeout of 60 seconds). It's sufficient to move the mouse by a delta of 0,0, no real movement. That does work. The code to put in the Tick event:
This comes from pinvoke.com:
| |||||
feedback
|
|
Subtle. The official way to tell Windows that the system is not idle is SetThreadExecutionState. This resets the idle timer, (or turns it off, if you pass | |||
|
feedback
|
|
This blog post details what you need to do in C++. The actual code snippet from the website:
} | |||||||||
feedback
|
|
See answer to this question: | |||
feedback
|
|
I use Mouse Jiggler to reset the idle state. This gets around a Group Policy that tends to start my screensaver (and lock the machine) at inopportune times: when I'm reading a long document, studying a complex chunk of code, or talking/listening/not-constantly-typing during a meeting. As it can be slightly annoying to have the mouse jump 1px diagonally every second, I intend to use AutoHotKey to write a script that does basically the same thing, but only after a configured keyboard/mouse idle timeout, and maybe use the Shift key (or Scroll Lock) instead of a mouse move. | |||
|
feedback
|
|
Specifically, the SPI_SETSCREENSAVEACTIVE parameter. Does this not work? I was surprised that I did not see it here. Note that SetThreadExecutionState will not affect the screen saver at all, just the sleeping of the display. | |||
feedback
|
|
@Eyal - hey, thanks for the idea; it never occurred to me that a delta of 0,0 might work. I've added that option as "Zen jiggle" to 1.2 (leaving the original in also, for those people who get nervous when they can't actually see it working). | |||
|
feedback
|
|
Can't believe no one has pointed out the easy and obvious solution:
| |||
|
feedback
|
|
From MSDN:
There's a caveat though:
That seems to apply even if you use the SetThreadExecutionState with ES_CONTINUOUS. So, if it weren't for the caveat, your choices would be:
The last option is nice in that it works even with the password protection policy. | |||
|
feedback
|