Script to avoid computer lock

Asked By -10 points N/A Posted on -
qa-featured

Hello Techyv Friends,

Is there any script to avoid computer lock by displaying Screensaver, which will run as an auto executable file in startup.

Please advise me in this regard.

Zachary Cashh

SHARE
Answered By 0 points N/A #198789

Script to avoid computer lock

qa-featured

Hi,

 
You can create a vbs script to do the work. The VB Script will look somewhat like this 
 
Set ws = CreateObject("WScript.Shell") 
Do 
 Wscript.Sleep 50000 
 ws.SendKeys "{F15}" 
Loop
 
After creating a vbs script, you can convert it into EXE file and add it to the startup folder. If you are new to programming, you can follow the given link which displays steps to convert VbScript into EXE

Related Questions