Keep Windows Machine without going idle – Busy Bee Screen

I wanted to keep my Windows PC all time up & running without going idle. Here the script which does

var WshShell = WScript.CreateObject("WScript.Shell");
for (var i=0; i<60; i++) // 60 minutes { WshShell.SendKeys('+'); WScript.Sleep (60000); }

1.Create a new text file (xxx.js) with above code

2. Double click it xxx.js
3. The script will run 60 times at every minute and keep the machine on which it runs on from going idle.

OR

2. Add above script file through Windwos schedule to run upon Login
3. Note - it stops upon Logout / Shutdown. So make sure start the script after login.

Leave a Reply

Your email address will not be published. Required fields are marked *

− 3 = 3