Saturday 4 May 2013

Tutorial Crazy Caps Lock


What will this file do ?

This constantly turns caps lock on and off really fast continuously.


Method :

1. Open Notepad and copy the code given below.


Code:
Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
loop

2. Save as "Anything.vbs" (Without quotes & .vbs is must).

1 comments: