Sunday, February 1, 2015

CapsLock Spammer

This VBS code will make your computer toggle capslock on and off very fast so you will type very weirdly.  Also if you have a light for your caps lock button that light will flash on and off very fast.  Here is the code.
Just save it as capslock.vbs  .  You could also put it in the startup folder so when the computer turns on it will automatically start.

Dim wshShell : set wshShell = CreateObject("WScript.Shell")
do
wscript.Sleep 100
wshShell.Sendkeys "{CAPSLOCK}"
loop

No comments:

Post a Comment