Keeping Windows 10 Awake Without Admin Rights

how to keep windows 10 from sleeping without admin rights

If you want to prevent your Windows 10 device from falling asleep without admin rights, there are a few creative workarounds you can try. One low-tech solution involves using a clock and tape to create a makeshift mouse jiggler, keeping the mouse moving and preventing the screen from turning off. Alternatively, you can use apps like Mouse Jiggler, WiggleMouse, or Insomnia, which don't require admin privileges to keep your device awake. Another option is to use AutoHotkey with a specific script to move the mouse periodically. Finally, playing a video on Windows Media Player and minimizing it to the toolbar can also prevent the device from sleeping.

Methods to keep Windows 10 from sleeping without admin rights

Characteristics Values
Mouse Jiggler App An app that prevents the screen from sleeping by simulating mouse movement
Mouse Jiggler USB Adapter A physical USB device that moves the mouse to prevent the screen from sleeping
Power Toys App An app that prevents the screen from sleeping
'Insomnia' App An app that prevents the PC from sleeping, without requiring admin privileges
WiggleMouse App An app that prevents the PC from sleeping, without requiring admin privileges
AutoHotkey Script A script that moves the mouse cursor to prevent the PC from sleeping
Windows Media Player A sample video can be played on a loop in the background to prevent the PC from sleeping
Mechanical Methods Using a weight or tape on a clock to physically move the mouse and prevent the PC from sleeping

shunsleep

Use a Mouse Jiggler app or USB adapter

If you want to prevent your Windows 10 computer from sleeping without having admin rights, a Mouse Jiggler app or USB adapter can be a handy solution. A Mouse Jiggler, also known as a Mouse Mover, is a device or application that simulates mouse movements to trick the operating system into thinking the user is still active, thereby preventing the computer from going into sleep or standby mode.

There are two main types of Mouse Jigglers: hardware-based and software-based. Hardware Mouse Jigglers are small USB devices that you can connect to your computer's USB port. They periodically generate small cursor movements that are unnoticeable to the human eye but sufficient to keep the computer awake. These devices are typically plug-and-play and do not require any additional drivers or software to function. They are compatible with various operating systems, including Windows, making them a versatile option.

On the other hand, software-based Mouse Jiggler apps can be installed on your computer to achieve the same goal. These applications run in the background and simulate mouse movements at regular intervals, preventing the computer from sleeping. Software-based jigglers may offer more advanced features, such as customizable movement patterns and timing controls, but they require the installation of additional software, which may not be possible without admin rights.

When choosing a hardware Mouse Jiggler, look for options like the AirDrive Mouse Jiggler or similar USB Mouse Jigglers available online. These devices are typically small, discrete, and easy to carry, making them convenient for remote workers or those who need to prevent their computers from sleeping while on the go. Additionally, ensure that the device is compatible with your computer's USB or Type-C interface, as some may require adapters.

In summary, a Mouse Jiggler is a simple and effective solution to keep your Windows 10 computer from sleeping, even without admin rights. Whether you choose a hardware or software-based option, these tools can help you avoid the interruptions caused by your computer entering sleep or standby mode, enhancing your productivity and keeping your work uninterrupted.

shunsleep

Use the Power Toys app

PowerToys Awake is a utility tool by Microsoft for Windows 10 and 11 users, designed to keep a computer awake without having to manage its power and sleep settings. This is particularly useful when running time-consuming tasks, ensuring that the computer does not go to sleep or turn off its screen.

The PowerToys Awake utility can be used directly from the PowerToys Settings or as a standalone executable (PowerToys.Awake.exe in the PowerToys installation folder). It does not modify any of the Windows power plan settings and does not depend on a custom power plan configuration. Instead, it spawns background threads that tell Windows that they require a specific state of the machine. Once PowerToys Awake exits, the threads are terminated, and the computer will resume its standard power plan behaviour.

To enable PowerToys Awake, open the PowerToys Settings and toggle the 'Enable Awake' option. Once enabled, the application will manage the power and screen state of the computer. You can also keep the computer awake indefinitely or for a specific duration. The settings.json configuration file is located in %HomePath%\AppData\Local\Microsoft\PowerToys\Awake\. Keep awake temporarily options in the system tray can be adjusted by modifying the "customTrayTimes" property, a dictionary consisting of key-value pairs that contain the name of the shortcut and its duration (in seconds) to stay awake.

shunsleep

Use the 'Insomnia' app

If you want to prevent your Windows 10 PC from sleeping without having admin rights, you can use the Insomnia app. Insomnia is a small, free utility tool that prevents your computer from going to sleep after 30 minutes of inactivity. This can be useful if you're running diagnostics or want to prevent shutdowns when controlling your computer remotely.

To use Insomnia, download the .ZIP file from the official website and extract the appropriate version for your system (32-bit or 64-bit). When you open the program, a pop-up window will appear, stating, "This computer cannot go to sleep while this window is open." You can minimize this window to keep Insomnia running in the background, and your PC will not enter sleep mode. Keep in mind that Insomnia only serves this specific purpose and does not offer any configuration settings or additional features.

The Insomnia app was updated in February 2010 to include minimize-to-tray and command-line capabilities. This allows you to minimize the app to your system tray and access it quickly when needed. To disable Insomnia, simply close the window, which will restore your system's default power settings.

While Insomnia effectively prevents your computer from sleeping, it does not have an option to keep your screen on. If you require this feature, you may want to consider alternative solutions such as PowerToys or Don't Sleep, which offer more power management options and can also help block accidental shutdowns.

shunsleep

Use an AutoHotkey script to wiggle your mouse

If you want to keep Windows 10 from sleeping without admin rights, one option is to use an AutoHotkey script to wiggle your mouse and prevent the screensaver from activating.

Here's a step-by-step guide on how to do this:

Step 1: Download AutoHotkey

First, you'll need to download and install AutoHotkey, which is a free, open-source scripting language for Windows. You can download the portable version of AutoHotkey from the official website or other software distribution platforms.

Step 2: Create the Script

Once you have AutoHotkey installed, you can create a new script file (with the .ahk file extension) using a text editor like Notepad. Save this file in a location where you can easily access it.

Now, open the script file and paste the following code:

#Persistent

SetTimer, MoveMouse, 300000 ; Set the timer to 5 minutes (300000 milliseconds)

MoveMouse:

If (A_TimeIdle > 300000) ; Check if the system has been idle for more than 5 minutes

{

MouseMove, 10, 0,, R ; Move mouse 10 pixels to the right

Sleep, 1000 ; Wait for 1 second

MouseMove, -10, 0,, R ; Move mouse 10 pixels to the left

}

Return

This script will simulate mouse movement every 5 minutes (or any interval you set), preventing Windows from activating the screensaver or sleep mode.

Step 3: Run the Script

Save the script file and then double-click on it to run the script. You should see the AutoHotkey icon in your system tray, indicating that the script is running.

Step 4: Test and Adjust

Now, leave your computer idle for the duration of your screensaver/sleep timer. The script should kick in and wiggle your mouse cursor slightly, preventing the screensaver or sleep mode from activating.

If it doesn't work as expected, you can adjust the script's settings, such as the interval between mouse movements or the distance of the mouse movements.

Step 5: Make it Persistent (Optional)

If you want the script to run automatically every time you start your computer, you can set it to run at startup. To do this, open your Start menu, go to "Startup," and add a shortcut to your AutoHotkey script.

By following these steps, you can use an AutoHotkey script to wiggle your mouse and keep Windows 10 from sleeping, even without admin rights. This method is particularly useful if you want to prevent your work computer from sleeping while you're taking a break or if you're playing video games.

shunsleep

Place a weight on the laptop trackpad

If you want to keep your Windows 10 laptop from sleeping without admin rights, one possible solution is to place a weight on the laptop's trackpad. This method takes advantage of the laptop's capacitive sensing technology, which detects touch or movement on the trackpad.

  • Find an object that can serve as a weight: The weight should be heavy enough to depress the trackpad slightly but not too heavy as to damage it. Examples of suitable objects include a small rock, a metal paperweight, or a stack of coins.
  • Prepare the trackpad: If your trackpad is sensitive, you may need to adjust its settings to ensure it doesn't interpret the weight as a touch gesture. Go to your laptop's settings and look for the "Trackpad" or "Touchpad" settings." Adjust the sensitivity to a lower setting if possible.
  • Place the weight on the trackpad: Position the weight on the trackpad in a way that slightly depresses it, simulating a touch. You may need to experiment with different placements to find the most effective spot.
  • Test and adjust: After placing the weight, test if your laptop stays awake by allowing it to idle for a while. If it still goes to sleep, try adjusting the weight's position or increasing its pressure on the trackpad slightly.
  • Secure the weight (optional): If you need to ensure the weight stays in place, you can use a small piece of adhesive putty or tape to secure it to the trackpad. This is especially useful if you need to move your laptop around.

It is important to note that while this method can be effective, it may not work on all laptops, especially those with advanced gesture recognition or security features. Additionally, be cautious not to damage your trackpad by applying too much pressure or using an abrasive weight.

Frequently asked questions

There are a few low-tech solutions to this problem, such as placing a weight on the laptop trackpad or taping a clock to the mouse to keep the mouse moving. Alternatively, you can use an app like Insomnia or Mouse Jiggler, or a script that moves the mouse periodically.

Unlike low-tech solutions, apps and scripts can prevent the laptop from sleeping without any physical setup or potential issues with the mouse moving incorrectly.

First, create a script file with the following contents:

Dim objResult

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

i = 0

objResult = objShell.sendkeys("+{F15}")

Then, create a task in the Task Scheduler in Windows to run this script at an interval of less than your screen timeout.

Written by
Reviewed by

Explore related products

Share this post
Print
Did this article help you?

Leave a comment