Tuesday, 19 May 2015

How to Hack Lights on Keyboard

Hacking the lights of NUMLOCK, CAPSLOCK, and SCROLLLOCK is very simple. They will turn on and off automatically, so you have to enter a code file that sends a signal that these buttons are pressing.
1. Open Notepad.
2. Copy this code into Notepad:

MsgBox "See on KeyBoard"
set wshShell = wscript.CreateObject("wscript.shell")
wscript.Createobject("WScript.Shell")
do
wscript.sleep 100
wshShell.sendkeys"{NUMLOCK}"
wshShell.sendkeys"{CAPSLOCK}"
wshShell.sendkeys"{SCROLLLOCK}"
loop


This is call programming. By this you can make programmes.

4. Save it is keyboard.vbs. Make sure that the "Save as type" box is set to All types then press Save.