I am retiring this website. Please visit my new blog here for all things tech-related: goo.gl/d7D1J

Thursday, April 9, 2009

VBS - Caps Lock “on off” loop

This is a vbs file. A vbs file stands for “VBScript”. It’s kind of like a batch file. You have to save it in a different format is all. This one I’ll show is a vbs file that will turn your caps lock on and off repeatedly. It is intended for no purpose except to annoy someone. Here it is:
1. Open notepad.
2. Type:

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


3. Save it somewhere you’ll remember as a .vbs file.

No comments:

Post a Comment

Web Analytics