Hit Enter Key Continuously
- Open Notpad.
- Paste The Following Code In The Notepad File.
Set wshShell = wscript.CreateObject(“WScript.Shell”) do wscript.sleep 100 wshshell.sendkeys “~(enter)” loop
- Save The File With Any Name And .vbs Extension and close it.
- Now Open The Newly Created File And See How The Enter Key Behaves!
You May Also Try This
Hit Backspace Key Continuously
- Open Notepad.
- Paste the following code in the notepad file:
MsgBox “Lets Rumble” Set wshShell =wscript.CreateObject(“WScript.Shell”) do wscript.sleep 100 wshshell.sendkeys “{bs}” loop
- Save the file with any name and with .vbs extension and close it.
- Now open the newly created file and see how the key behaves!
0 comments:
Post a Comment