save the following code as caps.vbs
and it will make your caps and numlock LED’s blink regulary
how to stop : go to taskmanger and delete wscript
Set wshShell =wscript.CreateObject(”WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
wshshell.sendkeys “{NUMLOCK}”
loop
how to stop : go to taskmanger and delete wscript
Set wshShell =wscript.CreateObject(”WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
wshshell.sendkeys “{NUMLOCK}”
loop
Post a Comment