Any way to detect what is disabling the screensaver?

19

6

Is there any Windows application out there that will determine what process is preventing the screen saver from becoming active?

Brent212

Posted 2012-02-08T19:55:46.850

Reputation: 191

1Welcome to SuperUser. What version of windows are you using? – Raystafarian – 2012-02-08T20:05:13.087

1The screensaver not activating could be caused by three different issues: (1) a program is specifically preventing the screensaver, (2) the mouse is preventing the screensaver because it is “moving” due to a hair on the optical sensor (or dirty ball) or being perched on the edge of a desk/pad/etc, or (3) a program or mouse is preventing the power-management options from activating, and thus indirectly stopping the screensaver. I don’t know of any programs that can list other software that is blocking screensavers/power-settings on purpose, but the mouse problems are easy to check. – Synetech – 2012-02-08T20:14:12.090

1^ agree, have not seen a program that seeks out which program. Programs or processes, can often be stopped. When having the same problem, I set the screen saver (or other power options) to very very short, then test by starting and stopping things. Also some "devices" in the device manager, have "power management" tabs, those devices will give control of "allows this device to wake the comptuter" so when you run out of program options , you can move on to device options. – Psycogeek – 2012-02-08T21:16:18.840

2http://www.infosecblog.org/2011/03/windows-7-screensaver-timeout/ Group policy, Flash holding it out, and Vmware & Powercfg overrides. – Psycogeek – 2012-02-08T21:32:16.117

2

doing a screen saver Preview , or using a program like the many small programs that kick it in directly http://www.pretentiousname.com/miscsoft/index.html#ScreenSave (screensave) can assist in discovery of what kicks it back off, or keeps it from occuring. that can save time.

– Psycogeek – 2012-02-08T21:49:27.727

Answers

13

powercfg is built into windows and lets you control and view lots of power management settings.

powercfg -energy -trace

This will create a very detailed power management event log, energy-trace.etl. Open it with Event Viewer and filter log by Event Source: Kernel-Power, Include event ID: 62.

This should give you events that look like:

The application or service \Device\HarddiskVolume1\games\Steam\Steam.exe has overridden user power management settings with a code of 0x3.

The code may be different depending whether screensaver, monitor sleep, or another state transition was prevented.

W1N9Zr0

Posted 2012-02-08T19:55:46.850

Reputation: 131

1Incase this is driving anyone else nuts: To open energytrace.etl open Event Viewer | Click Event Viewer (Local) in tree | Action | Open Saved Log | open C:\Windows\System32\energytrace.etl Tell it to convert to the new log format. Works on windows 10. – candied_orange – 2016-03-19T10:27:49.987

3In Windows 10 just run powercfg /energy and a web page will be created instead. – Professor of programming – 2018-02-17T22:30:18.487

I get "The power efficiency diagnostic library (energy.dll) could not be loaded". Why might that be? (the Power service is started) – Sanjay Manohar – 2013-04-17T00:54:12.820

8

Run powercfg /requests from an Admin Command Prompt. For example, mine printed:

DISPLAY:
[PROCESS] \Device\HarddiskVolume8\Games\Origin\Origin.exe
Playing video

SYSTEM:
[DRIVER] Realtek High Definition Audio (HDAUDIO\FUNC_01&VEN_10EC&DEV_0900&SUBSYS_10438560&REV_1000\4&9793a48&0&0001)
An audio stream is currently in use.

AWAYMODE:
None.

Which indicates that Origin was playing a video and this was preventing the screensaver from running.

Miral

Posted 2012-02-08T19:55:46.850

Reputation: 747

1

Sometimes just changing the time on the screensaver (not the type) to something else, say from 10 min down to 1 and then back to what you had it before will allow the screen saver to function normally.

Serj Sagan

Posted 2012-02-08T19:55:46.850

Reputation: 131

1

Thanks to W1N9Zr0 for pointing me in the right direction!

In my case, it was an XP Pro (SP3) machine so the "energy" switch was not available, However, the "devicequery" switch indicated that it was either the mouse or the keyboard. Once I switched from the PS/2 keyboard I was using to a USB keyboard, the screensaver (and other power options) kicked in per the settings.

NOTE: When screensaver was set to 1 minute, it would sometimes kick in so I knew it was working. Anything above 1 minute and the screensaver would never kick in.

edgerrr

Posted 2012-02-08T19:55:46.850

Reputation: 241

0

I find the culprit is typically a media player. You'd think it'd only be when playing video, but I have had some music players hold off the screen saver. For example I had Amazon Music and Groove open and paused today, and just found my screen still unlocked after an hour.

I'm not sure which is to blame, but I suspect them over the IDE and browser I was running, both of which do let the screen lock.

Alex O'Donnell

Posted 2012-02-08T19:55:46.850

Reputation: 1

-2

I don't know of any program that does this, but the way to find out is via the GetThreadExecutionState() function which will hold the value ES_DISPLAY_REQUIRED if the thread is currently blocking the screensaver from being activated.

If you apply this function to all of the threads in the system and then call GetProcessIdOfThread on the thread that you find, you'll have found the process that is blocking the screensaver.

SecurityMatt

Posted 2012-02-08T19:55:46.850

Reputation: 2 857

1There is no "GetThreadExecutionState()". – James – 2012-04-17T08:41:45.577