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...
https://www.computersprofessor.com/2016/06/toggle-capslock-repeatedly-using-notepad.html?m=0
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 Demo.vbs file and Open it to see the magic.