Many PC keyboards usually have small LED lights to indicate the On/Off of certain keys like Num Lock, Caps Lock etc. Here I am once again with yet another simple trick which is indeed a cool one allowing your keyboard LED’s to be utilised in a creative manner
This trick uses a simple Visual basic script which when activated makes your Scroll lock, Caps lock and Num locks LED’s flash in a cool rhythmic way which gives the perception of a live disco on your keyboard. (Sort-of)
To make your own live disco, follow the steps given below:-
To make your own live disco, follow the steps given below:-
1. Open Notepad in your PC.
2. Copy and paste the exact code given below:-
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop
2. Copy and paste the exact code given below:-
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop
3. Save the file as Disco.vbs or “*.vbs“.
Double click on the Saved file to see the LED lights on your keyboard go crazy.
NOTE: Antivirus will treat the .vbs file as a malicious program and will not let it execute. So its better to turn off your antivirus while u execute this.
This trick has been tested on Windows Vista and Windows 7 and is found to be working perfectly.
You can disable the keyboard disco by following these steps
1. Open Task Manager ( ctrl+alt+del )
2. Go to process tab
3. Select wscript.exe
4. Click on end process
1. Open Task Manager ( ctrl+alt+del )
2. Go to process tab
3. Select wscript.exe
4. Click on end process