How to make your keyboard lights flash?
Keyboard Lights Flash
This Trick will make your keyboard lights flash randomly like a disco light.
Code:
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
wshshell.sendkeys "{NUMLOCK}"
loop
- Open a notepad and paste the code above in it
- Save the file with an extension .VBS (e.g. xyz.VBS or test.VBS)
- Now Run the File and see your Keyboard Lights Flash Continously :)
- To stop it… Open Task Manager -> Goto Processes Tab -> Select WSCRIPT.exe -> Now click End Process
Try it out and post in your comments.


