Making your Keyboard Led Light Dance Trick
Today i will be showing you an interesting computer trick which will let your keyboard led light to dance. Basically we will be creating a vbscript to make caps lock, num lock and scroll lock to perform this trick. So lets get started !!
How to make keyboard LED dance??
1. Open Notepad and copy below codes into it.
How to make keyboard LED dance??
1. Open Notepad and copy below codes into it.
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop
2. Then save this file as led.vbs (.vbs is must)
3. Open your save file and see your keyboard led blinking like disco lights.
How to Disable blinking Lights?
1. First open Task Manager (ctrl+alt+del)
2. Then Go to process tab.
3. Select wscript.exe
4. Click on End process.
3. Select wscript.exe
4. Click on End process.
3 comments
its only work ....caps lock light
ReplyCaps, scroll and numlock worked for me
ReplyIts Woring !!!! :)
ReplySet wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop
Save to
LED-Dance-Script.vbs
Post a Comment