How can I prevent a policy-enforced screen lock in Windows 7?

104

49

Our corporate BOFH imposes the screen lock setting with a ridiculously short delay. It's frustrating and counterproductive.

Is there a way to prevent the automatic screen lock? I would assume there is no way to override the policy-enforced setting, but maybe there is a software that mimics user activity.

Just asking before I set up a perpetual mouse wheel. (get it?)

Gabriel R.

Posted 2011-08-30T08:32:07.737

Reputation: 1 209

1The grace period doesn't work for me, while the script does. I assume that my corporate policy also disables the grace period. – Dane Jacob Hampton – 2018-04-20T08:41:28.650

1Late to the game here, but wanted to add my solution. Since I don't have admin rights to the PC I use at work, and none of the scripts or programs in this thread worked for me (either they weren't allowed to be installed, or just didn't work), I purchased a "USB Mouse Jiggle" hardware from Amazon. Works like a dream, only $15. – Jeff Wright – 2018-04-30T11:01:54.497

15 minutes for screen locking is absolutely across-the-board standard. It's by no means "ridiculously short" other than OP's ancillary experience and opinion. BTW, this is usually mandated by corporate policy, which IT does not make (we just enforce it or suffer the consequences). – SamAndrew81 – 2019-10-28T18:26:11.100

My previous company has a 2-minute screen lock policy. That's not ridiculous but disaster and torturous and sometimes depressing. – Lame User – 2019-12-27T08:07:40.787

2Just curious what "ridiculously short" is? – Carl – 2011-08-30T15:45:32.970

There are workarounds like key pressers and mouse movers that will prevent the screen from locking. But are you sure you want to do this? Circumventing IT security is more than likely against company policy, and could be a fireable offense. – Keltari – 2011-08-30T16:14:38.273

715 minutes. OK, it's not that short ... unless you are at home, not in an open space, and also often working on a second computer. Like I am, so the screen lock is obnoxious. – Gabriel R. – 2011-08-31T10:32:52.927

One semi workaround is not to block the screensaver, but to set the grace period to a few hours. (That is the time between the starting of the screensaver and the time you need to enter a password. Usually this is set to 5 seconds. So a quick shake with the mouse when the screensaver just kicks in disables it. However with a higher value you can have hours without a password. – Hennes – 2013-12-24T20:14:09.017

Answers

89

I use a script I title idle.vbs:

Dim objResult

Set objShell = WScript.CreateObject("WScript.Shell")    

Do While True
  objResult = objShell.sendkeys("{NUMLOCK}{NUMLOCK}")
  Wscript.Sleep (6000)
Loop

Every six seconds, this quickly toggles numlock on the keyboard, causing Windows to believe that someone is interacting with the keyboard, preventing screen lock. This runs on vanilla windows, you don't need development or scripting tools to use it, just make a text file with .vbs as the extension and double-click it (or place it in your startup items).

Edit: you can put this script in your startup items with

 choco install IdleVbs -source https://www.myget.org/F/joshrivers-utility/

For more information on the Choclatey (choco) CLI installer please see:

https://chocolatey.org/

JoshRivers

Posted 2011-08-30T08:32:07.737

Reputation: 1 022

1@JoshRivers a way to stop this script, without having to restart the computer, would be nice as well. – DeeJayh – 2017-02-03T17:52:47.223

3

@DeeJayh I think you can just find the instance of wscript.exe in Task Manager and kill it. There usually aren't a lot of instances of that executable running. You could probably make an automated solution for termination (http://stackoverflow.com/a/22325745) or by putting code in the Do While section that watches for an external fact. Like have the script create a file on startup, then check that the file exists in While. That way you could just delete the file to make the script terminate. (I never quit the thing, though, so I just run the script and very rarely kill it with Task Manager).

– JoshRivers – 2017-02-04T20:28:53.700

1

On Windows 10, an easy way to locate the startup folder is display the Start->Run window (e.g. WindowsKey+R) and then type shell:startup. See this site for more info http://www.thewindowsclub.com/startup-folder-in-windows-8

– buzz3791 – 2018-04-12T15:55:04.860

To find the script look for Microsoft Windows Based Script Host in your task manager. Or add a column Process Name and then look for wscript.exe. – JohnAndrews – 2018-06-06T08:30:04.410

Works great on a Win10 Surface laptop - that does not even have a physical NumLock key! – Shahar – 2018-12-19T15:45:03.030

This seems to work great UNLESS Outlook (365) is the active window and then it doesn't seem to prevent screen lock. Has anyone else noticed this? – raeldor – 2020-02-21T22:54:02.043

92

If Windows Media Player is still installed, you can play a video on loop and minimize it (the sample "Wildlife" videos work fine for this). By default, as long as a video is playing, the screen won't lock.

omaha_brad

Posted 2011-08-30T08:32:07.737

Reputation: 1 021

3

Great hack. I built a small blank video and batch scripts to start this. Files at box.net and a blog post at my personal site

– Eric Cloninger – 2014-11-26T19:44:07.403

1@EricCloninger this doesn't play on W2k3 SP2 Media Player; good idea though – kubanczyk – 2015-01-17T13:22:36.490

1@kubanczyk I had some problems with WMP on Windows 7 to launch into looping mode from a script, but I could launch the video and then manually choose the looping button on the control bar. – Eric Cloninger – 2015-01-17T21:45:14.270

4Works fine in Windows 7. Nice hack! – neves – 2016-11-05T01:52:22.013

1If you're using VLC, this will only work if the video window is not minimized (but it can be in the background). – Joe Mornin – 2018-03-01T17:21:40.943

This works on Windows 7 playing an MP3 in minimized Media Player instead of video. – Chris Jenks – 2018-05-23T16:09:14.450

Does it works on win 10 ? – Shatayu Darbhe – 2019-06-28T03:44:07.417

3Thank you! This is the simplest, most effective solution. (I didn't try it though, I left the company a while ago and try to stay away from Windows.) – Gabriel R. – 2013-04-16T11:43:33.450

5I confirm that this works on Windows XP using an MP3 file instead of a video. – Alaa Ali – 2013-09-23T09:59:58.910

4Brilliant hack! – None – 2014-04-02T13:51:03.473

3This also works using VLC for those who prefer it over Windows Media Player – ecoe – 2014-05-05T15:22:19.130

18

Yet another option is freeware Caffeine program. It is free for commercial use as well. From the program's homepage:

If you have problems with your PC locking or going to sleep, caffeine will keep it awake. It works by simulating a key-press once every 59 seconds, so your machine thinks you're still working at the keyboard, so won't lock the screen or activate the screensaver.

Caffeine works by simulating an F15 key up event every 59 seconds. Of all the key presses available, F15 is probably the least intrusive (I've never seen a PC keyboard with that key!), and least likely to interfere with your work.

This off-the-shelf solution also allows you to control when to enable it and disable it:

Double-clicking the program icon empties the coffee pot, which is what the icon represents, and temporarily disables the program. Double-clicking it again refills the pot, and will keep your machine awake.

Ilya Kurnosov

Posted 2011-08-30T08:32:07.737

Reputation: 336

9I'm waiting for the day when a Gov't employee puts Caffeine on their computer and it just so happens that something like Shift+F15 launches the nukes... – kazoni – 2015-06-24T17:37:40.153

Nice easy "off the shelf" solution, thanks. Seems to have about as many command-line options as gcc, but I don't need to use any of them! – Sam Watkins – 2016-08-04T03:07:01.563

The tool works great for me! I had to install the Visual C++ 2008 Redistributable to get it working. https://www.microsoft.com/en-us/download/details.aspx?id=26368

– Synck – 2019-10-02T07:07:30.747

7

You can create an AutoIt script to either continually press an unused key (e.g. make it toggle the num lock, scroll lock), sleep for a minute or so, and repeat. Alternatively, if you use the keyboard a lot, you could make it move the mouse by a pixel or so in any direction.

If you don't want it continually running, you could also launch the script as a scheduled task (if you have access) to launch after the computer has been inactive for some time.

And this is a very simple script to perform an invisible mouse move, if you don't want to get into AutoIt syntax:

While True
   Local $pos = MouseGetPos()
   MouseMove($pos[0]-1, $pos[1]-1, 0)
   MouseMove($pos[0], $pos[1], 0)
   Sleep(540000)
WEnd

This script moves mouse cursor by one pixel in the up-left direction and after that returns it back, then sleeps for 9 minutes (540000 milliseconds). When script is running, you can see AutoIt icon in the tray. You can stop it right-clicking this icon and choosing the corresponding option.

To make a script, install AutoIt, right-click in any folder and choose New > AutoIt v3 Script, name it, right-click this new script, choose Edit, paste the code provided above and save. You can even compile it to .exe (again, from context menu) to start, for example, from Windows Scheduler.

Breakthrough

Posted 2011-08-30T08:32:07.737

Reputation: 32 927

Precompiled version of this AutoIt Script here https://www.symantec.com/connect/downloads/readynosleepexe-prevents-screensaver-and-pc-locking

– JJS – 2016-11-29T21:10:41.033

Thanks, I'll check it out, seems simpler than a mouse wheel cage setup :) – Gabriel R. – 2011-08-31T10:37:15.637

5

Compile this in Visual Studio or C# Express and run it from a command prompt (or double click it). Requires .NET 4.0 or above. It does everything you are looking for.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Threading;
using System.Runtime.InteropServices;
using System.Windows.Forms; 

namespace ImWorkin
{
    class Program
    {
        [FlagsAttribute]
        public enum EXECUTION_STATE : uint
        {
            ES_SYSTEM_REQUIRED = 0x00000001,
            ES_DISPLAY_REQUIRED = 0x00000002,
            ES_CONTINUOUS = 0x80000000
        }
        public SYSTEMTIMEOUTS TimeOuts
        {
            get { return sysTimeouts; }
        }
        public struct SYSTEMTIMEOUTS
        {
            public int BATTERYIDLETIMEOUT;
            public int EXTERNALIDLETIMEOUT;
            public int WAKEUPIDLETIMEOUT;
        }

        [DllImport("USER32.DLL", CharSet = CharSet.Unicode)]
        public static extern IntPtr FindWindow(string lpClassName, string lpWindowName);

        [DllImport("USER32.DLL")]
        public static extern bool SetForegroundWindow(IntPtr hWnd);

        [DllImport("kernel32.dll", CharSet = CharSet.Auto, SetLastError = true)]
        static extern EXECUTION_STATE SetThreadExecutionState(EXECUTION_STATE flags);

        [DllImport("user32.dll", SetLastError = true, EntryPoint ="SystemParametersInfo")]
        internal static extern int SystemParametersInfo(int uiAction, int uiParam, ref int pvParam, int fWinIni);

        private static System.Threading.Timer preventSleepTimer = null;
        public const int SPI_GETBATTERYIDLETIMEOUT = 252;
        public const int SPI_GETEXTERNALIDLETIMEOUT = 254;
        public const int SPI_GETWAKEUPIDLETIMEOUT = 256;
        public static int Counter = 0;
        public static int timeOutinMS = 0;
        public static int batteryIdleTimer;
        public static int externalIdleTimer;
        public static int wakeupIdleTimer;
        public static SYSTEMTIMEOUTS sysTimeouts;


        static void Main(string[] args)
        {
            Console.WriteLine("You are about to be workin!! Just a moment...I need to calculate a few values.");
            string dots = string.Empty;
            for (int i =2; i < 60; i++)
            {
                dots = "";
                for (int ii = 0; ii < i; ii++)
                {
                    dots = dots + ".";
                }
                Thread.Sleep(100);
                Console.Clear();
                Console.WriteLine("You are about to be workin!! Just a moment...I need to calculate a few values.");
                Console.WriteLine(dots);
            }


            GetSystemTimeOuts();


            if (timeOutinMS < sysTimeouts.BATTERYIDLETIMEOUT)
                timeOutinMS = sysTimeouts.BATTERYIDLETIMEOUT;
            if (timeOutinMS < sysTimeouts.EXTERNALIDLETIMEOUT)
                timeOutinMS = sysTimeouts.EXTERNALIDLETIMEOUT;
            if (timeOutinMS < sysTimeouts.WAKEUPIDLETIMEOUT)
                timeOutinMS = sysTimeouts.WAKEUPIDLETIMEOUT;

            if (timeOutinMS == 0)
                timeOutinMS = 30;

            DisableDeviceSleep();
            Console.WriteLine("");
            Console.WriteLine("");
            Console.WriteLine("OK. I have calculated your computers timeout periods and set the   ");
            Console.WriteLine("necessary hooks. Your computer will not shut off the monitor, will");
            Console.WriteLine("show active in any chat programs,the screensaver is disabled and ");
            Console.WriteLine("the computer will not lock! Anyone looking at you eaither locally ");
            Console.WriteLine("or remotely will think you are hard at work.");
            Console.WriteLine("");
            Console.WriteLine("Now go do something fun...I got your back ;)");
            Console.WriteLine("Oh yeah....if you close this window OR press `q' in this ");
            Console.WriteLine("window you are going to have to actually work.");
            Console.WriteLine("");
            Console.WriteLine("");
            Console.WriteLine("This text will disappear in a 30 seconds. Just in case someone comes ");
            Console.WriteLine("by and reads your screen!");
            Console.WriteLine("");
            Console.WriteLine("");
            Console.WriteLine("Need custom coding? Kenneth.gore@gmail.com");
            while (Console.KeyAvailable == false)
            {
                Thread.Sleep(250);
                ConsoleKeyInfo cki = Console.ReadKey(true);

                if (cki.KeyChar == 'q')
                    break;
            }

        }


        public static void DisableDeviceSleep()
        {
           SetThreadExecutionState(EXECUTION_STATE.ES_SYSTEM_REQUIRED | EXECUTION_STATE.ES_DISPLAY_REQUIRED | EXECUTION_STATE.ES_CONTINUOUS);
           preventSleepTimer = new System.Threading.Timer(new TimerCallback(PokeDeviceToKeepAwake), null, 0, timeOutinMS * 1000);
        }

        public static void EnableDeviceSleep()
        {

           preventSleepTimer.Dispose();
           preventSleepTimer = null;

        }

        private static void PokeDeviceToKeepAwake(object extra)
        {

            Counter++;
            try
            {
                   SetThreadExecutionState(EXECUTION_STATE.ES_SYSTEM_REQUIRED | EXECUTION_STATE.ES_DISPLAY_REQUIRED | EXECUTION_STATE.ES_CONTINUOUS);
                   IntPtr Handle = FindWindow("SysListView32", "FolderView");

                   if (Handle == IntPtr.Zero)
                   {
                       SetForegroundWindow(Handle);
                       SendKeys.SendWait("%1");
                   }

                   if (Counter > 1)
                       Console.Clear();
            } 
            catch 
            {

            }
        }

        public static void GetSystemTimeOuts()  
        {
            sysTimeouts.BATTERYIDLETIMEOUT = -2;
            sysTimeouts.EXTERNALIDLETIMEOUT = -2;
            sysTimeouts.WAKEUPIDLETIMEOUT = -2;


            if (SystemParametersInfo(SPI_GETBATTERYIDLETIMEOUT, 0, ref batteryIdleTimer, 0) == 1)
                sysTimeouts.BATTERYIDLETIMEOUT = batteryIdleTimer;
            else
                sysTimeouts.BATTERYIDLETIMEOUT = -1;

            if (SystemParametersInfo(SPI_GETEXTERNALIDLETIMEOUT, 0, ref externalIdleTimer, 0) == 1)
                sysTimeouts.EXTERNALIDLETIMEOUT = externalIdleTimer;
            else
                sysTimeouts.EXTERNALIDLETIMEOUT = -1;



            if (SystemParametersInfo(SPI_GETWAKEUPIDLETIMEOUT, 0, ref wakeupIdleTimer, 0) == 1)
                sysTimeouts.WAKEUPIDLETIMEOUT = wakeupIdleTimer;
            else
                sysTimeouts.WAKEUPIDLETIMEOUT = -1;


        }
    }
}

user205533

Posted 2011-08-30T08:32:07.737

Reputation: 51

7In response to the c# code posted its usually customary to give credit to the author. That happens to be me. I posted this almost two yeas ago on stack Overflow I believe. – None – 2015-01-11T16:59:01.900

Sorry....in the above post everything after the phrase "Looking for." is code and should be compiled. It didn't format correctly. The code demonstrates some pretty cool pInvoke for those interested. Btw....after compiled, I just put it in my path somewhere like c:\windows. This way if I'm at a cmd prompt I can type ImWorkin and I'm good to go :) – user205533 – 2013-03-09T03:34:30.040

1You can modify your answer by clicking the edit link below it. – Dennis – 2013-03-09T03:59:20.227

please edit your first answer and then delete this one. – teylyn – 2013-03-09T04:00:30.253

6WTF is up with the "Just a moment, I'm calculating a few values!" dummy loop? – KalEl – 2013-10-24T13:30:06.497

5

There is an android app called "Timeout Blocker" that vibrates at an interval and you can put your mouse on it. It says not to use it at work though. https://play.google.com/store/apps/details?id=com.isomerprogramming.application.timeoutblocker&hl=en

Matt

Posted 2011-08-30T08:32:07.737

Reputation: 51

2

I like to use easy and integrated options (no additional software), like a powershell script (thanks https://dmitrysotnikov.wordpress.com/2009/06/29/prevent-desktop-lock-or-screensaver-with-powershell/) that uses the "f15" as the key to success (thx to caffeine. It's indeed least interfering)

param($minutes = 180)

write "... screen will be awake for $minutes"

 $myshell = New-Object -com "Wscript.Shell"

 for ($i = 0; $i -lt $minutes; $i++) {
 write "... screen will be awake for" ($minutes-$i)
 Start-Sleep -Seconds 60    
 $myshell.sendkeys("{F15}")
}

Put this into a myScriptName.ps1 and start it via desktop shortcut or commandline: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -nop "C:\Users\myUser\Desktop\myScriptName.ps1"

UPDATE: Maybe there was some change from the administrator, but this doesn't work for me anymore Now I have to use an autohotkey-script from NBirnel: https://github.com/nbirnel/nosleep - this work perfect, because it moves the mouse (without distracting any work)

eli

Posted 2011-08-30T08:32:07.737

Reputation: 436

I run the code but getting the following error. Please advise

`c:\Powershell>powershell -nop myScriptName.ps1 myScriptName.ps1 : The term 'myScriptName.ps1' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At line:1 char:1

  • myScriptName.ps1
  •   + CategoryInfo          : ObjectNotFound: (myScriptName.ps1:String) [], CommandNotFoundException
      + FullyQualifiedErrorId : CommandNotFoundException
    
    

c:\Powershell>` – Sabrina – 2018-11-15T13:24:00.450

@Sabrina maybe you have to define the full path to your script, so not just "myScriptName.ps1" but "c:\path\to\myScriptName.ps1" – eli – 2018-11-19T13:37:04.880

1

Mouse Jiggler might be an option: https://mousejiggler.codeplex.com/

KERR

Posted 2011-08-30T08:32:07.737

Reputation: 329

This works just great :) – sunil – 2017-09-07T11:46:59.097

1

In my case just this one line did the trick:

SendKeys.Send("{CAPSLOCK}");

Just put it in the Timer_Tick event and set timer interval to e.g. 60000ms.

user3540753

Posted 2011-08-30T08:32:07.737

Reputation: 111

1ok, it's quite late to resume this answer but consider sending not one but two CAPSLOCK if you don't want me to staRT YELLING IN THE MIDDLE OF A STACKOVerflow comment without understanding why (it tooks a couple of minutes to write this comment) – Gian Paolo – 2018-09-03T08:31:31.277

@GianPaolo you're right. This is what I did. I thought it's clear but maybe I should modify the answer. – user3540753 – 2018-09-11T07:36:39.290

-1

The correct way to handle it is to:

  • go into the registry where the policy is
  • set the value to whatever you want
  • and alter the registry key permissions
  • only Deny write access to anyone except yourself

Ian Boyd

Posted 2011-08-30T08:32:07.737

Reputation: 18 244

1When the admins disable the screen lock settings, editing the registry is already disabled. – Gabriel R. – 2018-10-04T15:35:36.543

@GabrielR. As an administrator you can alter the ACL on the registry keys. If i get the patience i'll link the talk from Mark Russinovish where he mentions getting rid of the Microsoft group policy that locked down his own laptop. If you're an administrator you have full control of the machine. It likely has to start with taking ownership of the registry keys, then granting yourself full control, then denying anyone else anything except read access. – Ian Boyd – 2018-10-04T16:43:33.770

-5

You should disable the "screen lock"/"sleep mode" from control panel > power options > change plan settings. Her in click the drop down for "Put the computer to sleep" and select "never".

RAJESH BANSAL

Posted 2011-08-30T08:32:07.737

Reputation: 11

4Domain admins can have a policy-enforced screen lock in Windows. – Gabriel R. – 2013-11-18T17:51:54.733