Best Prank Scripts

This is a script which keeps on pressing enter i mean the function of enter..

well its a bit tough to stop this script.. the only way to stop this is to restart the pc......


Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "~(enter)"
loop

type it in notepad and save it as "anthing.vbs"

FOR BACKSPACE:

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

type it in notepad and save it as "anthing.vbs"


Make Your Keyboard to type "You are a fool" cont.


Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "You are a fool."
loop

type it in notepad and save it as "anthing.vbs"


To Open Notepad continually

@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top

type it in notepad and save it as "anthing.vbs"


To stop this processes

open TASK MANAGER--->PROCESSES

search for wscript.exe and stop it!!!!!!

0 comments: