Freak out your friends with some cool VBscripts
Frustrate your friend by making this VBScript hit Enter simultaneously:Type :Set wshShell = wscript.CreateObject("WScript.Shell")dowscript.sleep 100wshshell.sendkeys "~(enter)"loopSave it as "Anything.VBS" and send it.Toggle your friend's Caps Lock button simultaneously:Type :Set wshShell =wscript.CreateObject("WScript.Shell")dowscript.sleep 100wshshell.sendkeys "{CAPSLOCK}"loopSave it as "Anything.VBS" and send it.Frustrate your friend by making this VBScript hit Backspace simultaneously:Type :MsgBox "Let's go back a few steps"Set wshShell =wscript.CreateObject("WScript.Shell")dowscript.sleep 100wshshell.sendkeys "{bs}"loopSave it as "Anything.VBS" and send it.