Windows screen auto unlock - Script
To keep the laptop screen idle, without the lock.
Script:
Set WshShell = WScript.CreateObject("WScript. Shell")
While 1
WshShell.SendKeys "{SCROLLLOCK}"
WScript.Sleep (15000)
Wend
Set WshShell = Nothing
Save it .vbs and double-click and won't lock the screen.
Comments
Post a Comment