Hi guys, this is a simple trick to blink your keyboard LED’s continuously by a simple batch programming. Steps:
· * Open notepad and copy paste the following code into that notepad
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop
* And then save that file as “led.vbs” (Note: Make sure need must vbs)
· * Now double click that vbs. You can see the dancing of your keyboard LED’s.
To Stop that blinking go to task manager (control+Alt+Del). And Choose process tab then right click on wscript process and end the process.
Post a Comment