Make your Keyboard LED Lights Blink Like Disco Lights

Animated-lights With help of a small VBS script you can make your keyboard LED light blink continuously. The Caps Lock, Num Lock and Scroll Lock lights blink like disco lights. Lets see how you can do it on your PC.

Also see Which process is blocking Sleep mode on your PC.

1. Open Notepad, copy and paste below code into Notepad.

Set wshShell=wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop

2. Save this as lights.vbs.

3. Open lights.vbs and you will find that Caps Lock, Num Lock and Scroll Lock lights are blinking on your keyboard.

4. To stop this script, open Task Manager (Press Ctrl + Alt + Del in your keyboard).

5. In the Process tab, look for wscript.exe file and click End Process.

Hope you like this little Windows trick.

No comments:

Post a Comment

All comments are moderated. Keyword names are deleted.