One of the most annoying things that can happen while typing is having the cap locks button down. You start typing and then BAMMM ALL UPPER CASE LETTERS. You turn it off and on you go. But what if the cap locks didn’t turn off and then on and then off again. With this little vba script you can have you friends screaming. What the script will do is, turn your caps lock button on and off non stop. The script will not stop running until the user turns their computer off or logs off.
Be Lazy and download it here
Step1
Open up note pad
Step2
Copy this code into note pad
Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
loop
Step3
Save the file as filename.vbs
Step4
zip up the file and email it to your friend. (some email clients block vbs files calling them viruses)
If you are unable to email the file, put it on a flash drive and when your friend is not looking place the file on his computer and double click. Once you have double clicked the file the program is running.
The program will look something like this
Example: MY FriEnD jUsT raN aN aNnOYinG proGrAm On MY cOmpuTeR AND nOw I CaN’T StoP TYPIng lIKe tHIs.

