How to do this:
1. Open notepad & enter following codes(each code in different notepad) and save the file as "Anyname.vbs" and then open that file.2. This code makes your keyboard light to turn on/off in a random manner.
Set wshShell =wscript.CreateObject("WScript.Shell")3.This code makes it a sequential chain of light....
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop
Set wshShell =wscript.CreateObject("WScript.Shell")4. Now to stop the lights from blinking, open task manager and then under "Processes" end the process wscript.exe.
do
wscript.sleep 200
wshshell.sendkeys "{CAPSLOCK}"
wscript.sleep 100
wshshell.sendkeys "{NUMLOCK}"
wscript.sleep 50
wshshell.sendkeys "{SCROLLLOCK}"
loop
Thanks for Stopping by Tech75. You can leave a comment to let me know your feedback and can also subscribe to the RSS feeds for regular updates.
No comments:
Post a Comment