Wednesday, 29 April 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


 

3. Call it keyboard.vbs. Make sure that the "Save as type:" box is set to All types (*.*); then press Save.

No comments:

Post a Comment