Hello friends, I have written a mini book on Cyber Security awareness for you, named "Hacking into Hackers' Head". This book uses common terms to explain things, and I'm sure you will get benefitted from it in your day to day life. It's available on Kindle and Google Play. Grab your copy now.

Friday, September 14, 2012

Convert keyboard lights to dancing lights

Hi friends, I have told you many batch file hacking tricks in my previous posts. Today I am going to tell you such a trick that will convert your keyboard lights like caps lock, num lock and scroll lock into a dancing light. This is a funny trick. not a virus.
Here is the simple trick:
1. Open notepad.
2. Copy and paste the following code in notepad.

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

3. Save it as "led.vbs".

or Download the led.vbs.

4. Double click on it and see your keyboard lights dancing.

Enjoy hacking.

No comments:

Post a Comment

We appreciate your valuable comments.

Scroll to Top