Toggle Keyboard Button Simultaneously
Copy the below text in a notepad :
- To toggle Capslock key continuously :
Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
loop
- To toggle enter key continuously :
Set wshShell = wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “~(enter)”
loop
- To toggle Back space continuously :
MsgBox “Lets Rumble”
Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{bs}”
loop
then save as hackerprime.VBS
Comments
Post a Comment