6

I know it is possible to disable auto log out from control panel. I want to know is there a way to prevent windows from locking/ sleeping without changing any security options.

Otiel
  • 1,790

4 Answers4

9

You can download and run this little program: No Sleep

Get it from here

No Sleep - Cnet

No Sleep - Apponic

It moves your mouse once a minute by one pixel. Thus it prevents your windows from going to sleep mode.

3

You could use this AutoHotkey script:

CoordMode, Mouse, Screen
Loop
{
    ; Move mouse
    MouseMove, 1, 1, 0, R
    ; Replace mouse to its original location
    MouseMove, -1, -1, 0, R
    ; Wait before moving the mouse again
    Sleep, 600000
}
return

You can download the portable version of AutoHotkey here.

Otiel
  • 1,790
0

When you click on the link for Todd Cramer's blog (which is http://thecramers.us/windows/prevent-windows-screen-timeout-and-sleep-mode-nosleep-exe/ ) , it takes you to a page that has nothing to do with Todd Cramer or his software. Presumably because his domain-name or web-hosting expired.

However, when I downloaded the NoSleep program back in 2017, I also took screencaps of his webpage, and I made it a point to keep the downloaded file handy.

Since his site is down, I've hosted it on my Mediafire account.

You can access it via: https://www.mediafire.com/file/vym9ft7coh6s84z/(keep+mouse+moving+to+avoid+screensaver)+--+NoSleep_0+(Archive+file+of+NoSleep+hosted+on+MediaFire+).rar/file

OR

via this URL-shortcut: https://waa.ai/NoSleepOnMediafire

Hope this helps!

-2

This can be done by the following:

  1. Go to Control Panel
  2. Click on Power Options
  3. Click on Change plan settings (to which ever plan is selected)
  4. Change 'Put the computer to sleep' on NEVER
  5. Click Save Changes
Chris
  • 181