Saturday 4 May 2013

Tutorial Endless Backspace

What will this file do ?

This makes it so the backspace key is constantly being pressed.


Method :

1. Open Notepad and copy the code given below.

Code:

MsgBox “Let’s go back a few steps”
Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{bs}”
loop

2. Save as "Anything.vbs" (Without quotes & .vbs is must).

0 comments:

Post a Comment