Have you ever noticed that while clicking Caps Lock, Num Lock,
Scroll Lock.... the led glows?{Led is attached under the Keyboard Button and I
think this is in almost all the laptop} We can request our Pc to lit the led of
a keyboard as a Disco Light. All we have to create Visual Basic Script that
means .vbs File as that we made earlier to make computer speaks what you text.
So lets get down to procedures:
STEPS
Set
wshShell=wscript.CreateObject("WScript.Shell")
do wscript.sleep 100
wshshell.sendkeys"(CAPSLOCK)"
wshshell.sendkeys"(NUMLOCK)"
wshshell.sendkeys"(SCROLLLOCK)"
loop
|
First copy
the given codes and paste it on the notepad {To open notepad just hit win Key +
R and type notepad and hit enter}
Then save
the above code as anythingyoucanname.vbs {Don't forget to change .txt into
.vbs} on Desktop so that it will be easy to find and open it.
After you have done this just open the .vbs file and see
what happens as the keyboard buttons led Caps Lock, NumLock,ScrollLock starts
to lit in a rhythmic way as that computer makes Keyboard to Dance.
NOTE : TO DISABLE THIS PROCESS ALL YOU HAVE TO DO IS OPEN TASK MANAGER AND
CLOSE THE WSCRIPT.EXE PROCESS.
0 Comments