10 Awesome Notepad Tricks

February 16, 2010

Notepad

Notepad is the default text editor in the Microsoft Windows OS. Many people prefer alternatives to notepad such as Notepad++, but did you know that notepad can do much more than just view and edit text ? In fact, I’ll tech you how to make a fake virus using notepad so that you can fool your friends :P

Here are some awesome trick you can do with notepad…..

1. Log Diary Trick
Have you ever wanted to make your own diary on your computer ? Why not try notepad..

LOG Notepad Trick

  • Open notepad
  • Type .LOG
  • Save the file as LOG.txt

Now when you open notepad, the date and time will automatically be inserted. Write anything you want and the date and time is auto inserted. Your own notepad Diary :)

Bush Hid The Facts 4335 Rule

2. The 4335 Rule
This trick may not work on all computers
This has been surprising users for quite some time. When you enter a few secret codes, notepad hides them.

  • Open notepad and type in BUSH HID THE FACTS
  • Close notepad and open it again to see the magic

Can you read it again ? This is called the 4335 Rule. This means, if the first word is four words, the second and third as three words, and the fourth as five words, then you follow the 4335 rule and the text is hidden.

The same happens with this app can break.

3. Open a file using notepad
Here is a simple trick to open any file or program with notepad.

Open notepad and type the following:

Start path of file

Then save the file as Shortcut.bat
Please note that the file type should be kept as ALL FILES while saving it as a .bat file.

Change path of file with your actual file path. For example if you have a file called run with an extension .exe in the folder TEST in C:\ drive, then your path should be something like this: C:\TEST\run.exe

If you want to open some complicated programs such as Firefox, then use this code:

START /d “path of folderprogram.extension

Change path of folder with the actual path of the folder, and put the name of the program with its extension. For example if you have a file called run with an extension of .exe in the folder TEST in C:\ drive, then your code should be something like this: START /d “C:\TEST” run.exe

4. Make Questions
Want to make something interactive ? Need to make questions ? Here is an example of a question made with notepad where the user got the answer correct.

Question Fun PC Life Notepad Trick

To do this, just type the following code in notepad.

@ECHO OFF
ECHO:
ECHO ………………………………………..
ECHO PRESS 1 or 2 to select your task, or 3 to EXIT.
ECHO ………………………………………..
ECHO.
ECHO 1 – This info was given by Fun PC Life
ECHO 2 – This info was not given by Fun PC Life
ECHO 3 – EXIT
ECHO.
SET /P M=Type 1, 2, or 3, then press ENTER:
echo:
IF %M%==1 GOTO Correct
IF %M%==2 GOTO Wrong
IF %M%==3 GOTO EXIT
:Correct
echo You are right !!
GOTO END
:Wrong
echo You are wrong. This info was really given by Fun PC Life
GOTO END
:END
PAUSE
goto EXIT
:EXIT

Now save the file as Question.bat and run the file.
Please note that the file type should be kept as ALL Files while saving it as a .bat file.

You can modify the code for your convenience. Change the bold text and try it out.

5. Make the Matrix
Matrix Bat

To make this, open notepad and type the following:
@echo off
color 2
:start
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto start

Save this file as Matrix.bat
Make sure the file type is kept as ALL FILES while saving it as a .bat file.

Open the saved file and see the magic.

6. Alternative Single Character Matrix
Single Character Matrix

Type in the following in notepad:

@echo off
color 0a
:A
echo 7 y x 3 W 8 G M P q 1 F 0 U v c i j O D s a E I j H 9 t 6 7 z C B 4 g 8 3 W 8 G
ping localhost -n 1 > nul
goto A

Save the file as Matrix2.bat and run the file.
The file type should be kept as ALL FILES while saving a .bat file.

7. Lock Folders using Notepad
This trick may not work on all computers

Lets say you want to lock a folder named PICS in your D:\ drive , whose path is D:\PICS

Then the code should be something like this:
ren pics pics.{21EC2020-3AEA-1069-A2DD-08002B30309D}

Pics is your folder name. Use the name of the folder in place for pics. Save the text file as lock.bat in the same drive.

To unlock this locked folder:

Open another new notepad text file and type the following:
ren pics.{21EC2020-3AEA-1069-A2DD-08002B30309D} pics

Save the text file as key.bat in the same drive. Here again, pics is the name of the folder. Change it to the folder you want to lock.

8. Make a fake Virus POP UP
Type the following code in notepad:

@echo off
msg * WARNING
msg * VIRUS ENTERED YOUR PC

Save the file as pop.bat and run it. You should get two pop up messages. There has been an issue on some computers, but it should work on most computers.

9. Create a command prompt Virus message
Fake Command Prompt Virus Message

Type the following in notepad:

@ echo off
title Virus
echo Your system is affected by virus
PAUSE
echo:
echo Windows will now try to undo changes
PAUSE
echo:
echo FAILED !
PAUSE
echo:
echo Your system is corrupt
PAUSE

Save the file as virus.bat and run the file.

10. Test your antivirus by EICAR STANDARD ANTIVIRUS TEST
Now, you can check if your antivirus really works. Type the following in notepad:

X5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*

Save the file as virus-test.txt
Scan the file. If your antivirus detects this file as a virus and tries to remove it, then you can be sure your antivirus is a good one. This is a much easier way, than actually downloading a virus to test it. This sample virus code is perfectly harmless and allows you to test your antivirus. A good antivirus like MS Security Essentials will detect this test virus even before you scan it.

That's all the tricks I'm sharing, at least for now. All the tricks above are perfectly safe and will not harm your computer in any way. There are many destructive notepad tricks as well, like making a real virus which kills the Operating System, but personally, I believe that is only meant for developers who want to make their OS security better. Use these tricks in your best behavior :)

Try these out and give us your comments......

Similar Post:
  • 5 More Notepad Tricks
  • How to make an .EXE app?
  • Make your own portable software that runs from a pen drive without installation
  • How to Install and Run Microsoft Office 2007 in Ubuntu/Linux
  • How to Install New Cursor Themes in Ubuntu
    • http://www.technoskillonline.com sudharsan @ technoskillonline

      ha ha
      You too started writing notepad tricks like me.
      matrix tricks is very nice

    • http://www.loudable.com Suhasini

      Wow Siddhu. After seeing this its hard to believe that there can be so many notepad tricks and I liked the Make the Matrix most.
      .-= Suhasini´s last blog ..Make Money Online with Blogging : Part 2 =-.

      • http://funpclife.blogspot.com/ Siddhu

        Notepad has many more tricks. It can do everything from typing text to destroying a PC. The possibilities with Notepad know no limits !
        .-= Siddhu´s last blog ..Comodo releases its new browser – The Dragon =-.

    • http://www.gadgetcage.com/ Siddartha

      kewl tricks bro!! NIce to find these kind of simple tricks after a long tym. Thnx for sharing :)

      • http://funpclife.blogspot.com/ Siddhu

        Simple :P Don’t bet on it bro, the same tricks with a few extra lines can do horrible things to your PC.. N ya, thanks for the comment :D
        .-= Siddhu´s last blog ..Comodo releases its new browser – The Dragon =-.

    • http://www.tech-hunter.co.cc Sukhjit

      Cool. I used matrix one to trick my friend before. He almost pissed in his pants. And the pop up one. Lets say that he will be still clicking yes on the never ending popups.

      • http://funpclife.blogspot.com/ Siddhu

        LOL.. I live the vbs tricks you make.. never ending.. my pop up ends. Though I know how to make never ending pop ups, I dont want to fry any processor making never ending ones… N ya, one way to end it is by clicking Ctrl+Alt+Del and with task manager terminate the process…
        .-= Siddhu´s last blog ..Comodo releases its new browser – The Dragon =-.

        • http://www.tech-hunter.co.cc Sukhjit Singh

          I made a new script! I will make a tutorial soon when I have time. Also it does not fry processor as it takes very less Processor because one popup displays at a time. Also I am looking a way so that it cannot be stooped. :-)
          .-= Sukhjit Singh´s last blog ..Windows 8 Wishlist! =-.

    • Arunima

      superb mind-blowing fantastic Fantabulous features…..
      Are their any other like these??? Plz plz plz post all of those….

      • http://funpclife.blogspot.com/ Siddhu

        There are many more… Mostly destructive ones that will spoil your mood… I’ll consider posting some more tricks after some time.. Keep reading Chaaps for more tricks like these :)
        .-= Siddhu´s last blog ..Comodo releases its new browser – The Dragon =-.

    • http://www.india365.org Provamsi @ India365

      This article is worth a RT mate. Good one.
      .-= Provamsi @ India365´s last blog ..How to Unblock a Blocked Follower in Google Buzz =-.

    • http://spytricks.net Parag Kolhe

      Cool Notepad Tricks
      .-= Parag Kolhe´s last blog ..Samsung Wave review =-.

      • Hermione

        hai parag shall u call me… i wanna know more about tricks da.. please call me 9655094065…..

    • Kimmy

      I feel like I was just reading the instructions from my old Commodore 64 and/or my DOS class in college.

    • http://kiranruth.blogspot.com Ruth

      Awesome …. Some neat stuff
      .-= Ruth´s last blog ..Midnight Gyan and gibberish =-.

    • Benji

      LOL! My computer is smart!
      I tried to do the “Test your Antivirus” trick but when I save it to my Desktop, it does not appear!

    • http://none travis

      Dude…you should tell people about echo@ off delete sys32…unlocks great magic within your computers lol

    • some guy

      @travis

      Correction:

      echo @off
      del %systemroot%\system32

      Also, i wouldnt consider most of these notepad tricks. They are just batch files being saved with notepad. you can make these in any plain text editor really.

      What you could do to be mean without damaging their computer is write a infinite looping function in vbs to append a line to a file.

      It will grow slowly, but if you keep it as a scheduled task it will ensure that the hard drive will fill up eventually, and at a slow enough rate that they wont know what happened.

      If you are really tricky you could have it create multiple files instead of just one file being appended, that way when he searches for the biggest file on his hard drive, it wont show up

      Also, if its ran as a service, people usually wont be able to recognize it, because there are multiple services running at the same time at any given time on an average users computer. so it wouldnt be as easy as picking out wscript.exe from task manager.

      just throwing around ideas, not gonna hand feed you the code though. A little research should get you what you need.

    • http://www.thebestreddress.com Janna

      Cute ideas. I’ve never done them before, but they would be interesting to show friends.

    • Seth

      most of these arent notepad tricks. they are just batch programming exercises using notepad as the text editor

    • anon

      When does making batch files considered a secret?

    • Fx

      Seth is 100% correct. Most of these “notepad tricks” could be done in any text editor…. notepad++ is a good one, and can do some stuff plain old notepad can’t. For example, regular expression search, templates for different coding languages, multi-tabs, etc.

    • jay

      ya the lock folder one doesn’t work on a toshiba satellite (running Win XP)
      it just makes the folder act as the control panel folder

      • ^howtohacker^

        that trick is also wrong, if you look up how to make a locked folder…it will tell you:+ its very easy

    • User

      On #9 instead of putting:
      @ echo off
      title Virus
      echo Your system is affected by virus
      PAUSE
      echo:
      echo Windows will now try to undo changes
      PAUSE
      echo:
      echo FAILED !
      PAUSE
      echo:
      echo Your system is corrupt
      PAUSE
      I put:
      @ echo off
      title Virus
      echo Your system is affected by virus
      PAUSE
      echo:
      echo Windows will now try to undo changes
      PAUSE
      echo:
      echo FAILED !
      PAUSE
      echo:
      echo Fuc* you bitc*
      PAUSE

    • vasuroshan

      these tricks are not bad ….
      .try vth new tricks

    • http://google.com teenonet

      http://www.teenonet.co.cc

      Cool social networking site!!!!!!!!!!!!!!!!!!!

    • Ayush

      @travis
      Correction:
      echo @off
      del %systemroot%\system32
      Also, i wouldnt consider most of these notepad tricks. They are just batch files being saved with notepad. you can make these in any plain text editor really.
      What you could do to be mean without damaging their computer is write a infinite looping function in vbs to append a line to a file.
      It will grow slowly, but if you keep it as a scheduled task it will ensure that the hard drive will fill up eventually, and at a slow enough rate that they wont know what happened.
      If you are really tricky you could have it create multiple files instead of just one file being appended, that way when he searches for the biggest file on his hard drive, it wont show up
      Also, if its ran as a service, people usually wont be able to recognize it, because there are multiple services running at the same time at any given time on an average users computer. so it wouldnt be as easy as picking out wscript.exe from task manager.
      just throwing around ideas, not gonna hand feed you the code though. A little research should get you what you need.

      View original article at Chaaps: 10 Awesome Notepad Tricks

      Also my antivirus is smart norton

    • swetha

      very nice…

      • http://not md aamir azmi

        hi…………….8750671782

    • swetha

      Really nice guys… for more nice tricks please call me 9655094065 and if u wish to give me note about a new trick please inform me… im waiting for ur calls… plz dont mess up with my number…divi hot…

    • R@g$

      Hi dude…….nice articles……i am doing b.tech 1st yr…..i want to code program for disabling the task manager and for enabling also….can u giv me some suggestions plzzzzzzz

    • jagga sidhu

      amazing these trick are so amazing
      thank you

    • bala

      hai swetha i messaged you but you did not reply me.

    • Bharat

      Hiiiiii….frnds how r u.I donno from u all learned this but I also wanna learn this so plzz help me.

    • irfan

      the matrix sudddenly poped upi and then went down

    • http://www.google.com md aamir azmi

      hello boys

    • http://www.google.com md aamir azmi

      hello boys………………………………………………..<3

    • manoj

      nice one dude.. matrix one is really nice…..

    • http://www.jangaboyz.com janga boyz

      you the bomb guy, i have never seen such tricks like these before…….what about the trick hungry virus, pls send me the tricks to my email. thank u. am ADAMS

    • Iman hacker

      YOUR VIRUSES ARE TOO OLDDD!!!!! o_O

    • NILESH

      HEY THE LAST TRICK OF ANTIVIRUS TEST DOES NOT WORK IF SAVE IT WITH .txt EXTINCTION.SAVE IT AS .bat,THEN IT WILL SHOW YOU A POP-UP BOX.

    • http://www.google.co.za shoes

      so cool!!!!!! wow

    • http://tweakandtrick.blogspot.com Akhilesh

      @Nilesh .Txt is for text and as most antiviruses do not scan .txt files using Resident Shield, they are likely to get missed being detected as a virus. As .bat files are scanned by it, your antivirus detected it.

    • Pingback: ဗိုင္းရပ္ ျပဳလုပ္နည္းႏွင့္ ေျဖရွင္းန

    • http://www.google.com shoes

      some of the tricks do not work but other wise this is the coolest thing ever

    • http://www.google.com shoes

      other wise this is the coolest thing ever

    • anonymous

      Notepad is one of the best command programs I know. I made a program then never stops popping up, you can’t click anything on the screen, and the only way to stop it is to shut down your computer. IT HAS NO LIMIT!

    • anonymous

      Btw, I believe the command you put in to make in never stop is “loop”

      (Idk if it’s with or without quotations, search it up.)

    • Ali Gamer70

      Hi, Im Trying to merge the virus and the matrix trick and the code i,ve got so far is@ echo off
      title Virus
      echo Your system is affected by virus
      PAUSE
      echo:
      echo Windows will now try to undo changes
      PAUSE
      echo:
      echo FAILED !
      PAUSE
      echo:
      echo Your system is corrupt
      Pause
      echo:
      echo Your system is corrupt
      PAUSE
      echo:
      echo Your system is corrupt
      PAUSE
      echo:
      echo Your system is corrupt
      PAUSE
      Pause
      echo:
      echo windows will now try force recovery please do not interupt as you can damage system severly.
      Pause
      echo off
      color 2
      :start
      echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
      goto start

      But I want It to Pop up by itself can you tell me how

      • ^howtohacker^

        sir, you need to make this file in a vbs. Then you can set when it will come up and at what time in the code

    Previous post:

    Next post: