Breaking

Tuesday, May 17, 2016

Toggle Capslock Repeatedly Using Notepad


You can play with someone’s computer, or maybe your own computer by writing a script that can toggle Caps Lock repeatedly.
Just copy and Paste the code written down below into notepad.
Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
loop

Now save it as a .vbs file and use it to see the magic.

No comments:

Post a Comment