Want to see the disco light in your keyboard then here is simple script to make it. It will make your caps lock, num lock and scroll lock flash like in disco.

Just copy the following code and pase in notepad and save it with extension vbs ( for example save it as disco.vbs).
code:
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop
Then after saving the file with the above highlighted code, double click it to run it then whoa! you can see the effect in your keyboard. 
To just turn off the effect just open the taskmanager and go to process. Then find and kill the process wscript.exe and that stops the effect.

0 comments