Celeb Glow
news | March 13, 2026

How to prevent windows from locking / sleeping (without admin privileges)

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.

4 Answers

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.

2

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.

When you click on the link for Todd Cramer's blog (which is ) , 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:(keep+mouse+moving+to+avoid+screensaver)+--+NoSleep_0+(Archive+file+of+NoSleep+hosted+on+MediaFire+).rar/file

OR

via this URL-shortcut:

Hope this helps!

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
4