Pages

Wednesday 29 January 2014

Revenge Notepad Tricks for You (Try On Your Ememies)

1.Prank Name: File.bat

Description: This prank will create and open a file that they cannot close, minimize, or maximize without closing the command prompt behind it.

1. Go into Notepad

2. Type the text below.

 @echo off
md hello
:A
start hello
goto A


3. Save it as file.bat

2.Prank Name: Delete.bat

Description: This prank will make your friends think that all of their files are being deleted and then at the end the file deletes itself so it is untraceable.

1. Go into Notepad.
2. Enter the text below into notepad
 @echo off
echo do you want to delete all of your computer data? (y/n)
pause >nul
echo Do not exit out of the screen or all computer data will be deleted.
ping localhost -n 2 > nul
echo Are you sure you want to delete all computer data? (y/n)
pause >nul
echo deleting all data...
echo.
echo.
pause localhost -n 2 > nul
dir /s
echo.
echo.
ping localhost -n 2 > nul
cls
echo error.. error.. Not all data deleted, are you sure you wish to stop? (y/n)
pause
echo.
echo.
ping localhost -n 1 > nul
cls
dir /s
echo.
echo.
ping localhost -n 2 >nul
cls
echo all data has been deleted..
pause
del "c:delete.bat" 


3. Save this as delete.bat (MUST NAME IT THIS!)


3.Prank Name: virus.bat

Description: The prank will open and unlimited amount of command prompts until the computer crashes or you manually crash it.

1. Go into Notepad
2. type 
start virus.bat
virus.bat
 (exactly like that!) 


3. Save it as virus.bat (must be .bat) 

4.Prank Name: shutdown.bat

Description: This makes your friend think that his/her computer has a virus then their computer shuts down.
1. Go to notepad and type:
@echo off
:A
cls
echo Do you wanna crash your computer? (y/n)
pause
echo Are you sure? (y/n)
pause
echo your computer will crash when the time reaches zero.
pause
msg * Your computer will crash in...
msg * 5
msg * 4
msg * 3
msg * 2
msg * 1
msg * Good-Bye
msg * You have been pwned! :)
shutdown -s -t 00 


2. Now save it as shutdown.bat


5.Prank Name: up.bat

Description: Shows a fake username and password entrance area then deletes it self
1.Go into notepad and type:

@echo off
echo If the proper username and password is not entered all files will be deleted by this virus.
echo Good Luck
set/p\/name=username:
set/p\/password=password:
echo haha you got the username and password wrong
pause
echo Files are being deleted
pause
dir/s
del "c:up.bat" 


3. Save it as up.bat (must be this!)
  

6.Prank Name: CD Drive Open and close

Description: This vbs file will continually open your CD drive

 1. Go into notepad

2. Type the text below

Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "~(enter)"
loop
3. Save it as cdopen.vbs

No comments:

Post a Comment