Notepad is one of the standard utilities that comes with the Windows Operating System and has very useful for Users. You can do many things with notepad, like short notes and tricks and make files with different extensions, such as .HTML, .BAT, VBS, PHP, EXE, etc.

So Guys, today, we will show the ultimate power of a notepad you have never seen before. Here are some of the kick-ass compilations of Cool Notepad Tricks & Pranks.

You can use these tricks to amaze your friends and prank your friends. Notepad is just a small text editor that can surprise you with simple commands that can do cool things in windows.

Most People don’t know about these notepad tricks, so it is easy to prank with them. There are many famous notepad pranks such as Ghost Keyboard, Matrix Effect, Shutdown PC with a batch file, Text to Speech, Fake Windows Error Message, etc.

These are very easy to understand and implement. You need common knowledge of Computers, and you can do it.

Best Notepad Tricks, Hacks & Pranks

Here we go; below is the list of the Best Cool Notepad Tricks that you can use to play pranks and do cool things in front of your school & college friends. Let’s start it. You just take simple steps and create a different extension file that can perform its function during execution.

1. Continuously eject CD/DVD drives

This one, you need to create .vbs script using the below code that will automatically eject your CD/DVD Drive again and again. You can annoy people around you, like your friends and people, so guys, this one is my favorite and cool notepad trick ever.

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

2. Convert Text Into Audio Using Notepad

Many People don’t know that you can convert your text to speech, and the computer will speak whatever you type in a notepad file. So you can also play pranks with your friends.

Dim message, sapi message=InputBox(“Hello Wassup Buddy”,”Am Good Too”) Set sapi=CreateObject(“sapi.spvoice”) sapi.Speak message

3. Constantly Repeat Any Messages

Many notepad tricks related to VBS scripts directly refer to windows scripts only. In this trick, you can create a notepad file that has a support bat file, and you need to save it with .bat file extension.

Just copy the below code, paste it into notepad, save as name.bat extension, and execute it.

@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. Use Notepad As Diary

You can also convert your notepad file into a diary. Just add .log extension. Whenever you open that file, it showing looking like a diary.

Just Type the daily things you want and save them with the Name.log extension, and another day, whenever you open, it can show you like dairy.

5.  Dancing Keyboard LED, aka Ghost Keyboard

It is also the epic trick to mess with your friends and relatives. Just copy and paste the below code in a notepad file and paste it with Prank.vbs and put this file in the startup folder and see the magic whenever you start your computer.

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

6. Disable Mouse

You can disable your mouse indirectly by creating this file. Whenever you execute, it disables your mouse whenever people think their mouse has stopped working. Same as the previous one, save this code in .vbs script.

rem Disable Mouse
 set key=”HKEY_LOCAL_MACHINEsystemCurrentControlSetServicesMouclass”
 reg delete %key%
 reg add %key% /v Start /t REG_DWORD /d 4

7. Shutdown Computer

You can shut down your PC by showing the shutdown message you want, like any dangerous messages that scare your friend or computer user who uses the computer. Save this file with name.bat extension because it runs on the dos command.

@echo off
Shutdown.exe -s -t 10
cls
msg * Blast your Motherboard in just 1 Minute

8. Create Password Protected Folder Lock

You can also do security things with a notepad, so that’s why I am telling you the ultimate power of a small utility program named notepad. You can create a password-protected folder using notepad. Just copy the below code, save locker.bat file, and in the blow, code changes your pass with techdator and put your desired one.

@ECHO OFF
 title Folder Locker
 if EXIST “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” goto UNLOCK
 if NOT EXIST Locker goto MDLOCKER
 :CONFIRM
 echo Are you sure u want to Lock the folder (Y/N)
 set/p “cho=>”
 if %cho%==Y goto LOCK
 if %cho%==y goto LOCK
 if %cho%==n goto END
 if %cho%==N goto END
 echo Invalid choice.
 goto CONFIRM
 :LOCK
 ren Locker “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
 attrib +h +s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
 echo Folder locked
 goto End
 :UNLOCK
 echo Enter password to Unlock folder
 set/p “pass=>”
 if NOT %pass%==techdator goto FAIL
 attrib -h -s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
 ren “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” Locker
 echo Folder Unlocked successfully
 goto End
 :FAIL
 echo Invalid password
 goto end
 :MDLOCKER
 md Locker
 echo Locker created successfully
 goto End
 :End

9. Falling Matrix Code Effect

It is another Best Cool Notepad Tricks that will show a green matrix falling on the black screen. Copy the code given below. Save the file with, Name.bat extension and open the file.

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

10. Notepad Trick to type slowly

Using this trick, all of your typing in notepad is going slow, so people are annoyed with this one. Just copy the code, save it with slow.vbs and try it.

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! “

11. Notepad Test Antivirus Trick

Using this method, you may easily verify the security of your antivirus software.

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

You can test the effectiveness of your antivirus software by scanning this file, renaming it to “test.exe,” and running it. If your antivirus software flags the file, you’re good to go.

12. Format Hard Disk Using Notepad

Any information stored on your complex drive will be erased if you run this code. Simply paste the following code into Notepad and save it as “anyname.exe.”

01100110011011110111001001101101011000010111010000 100000011000110011101001011100 0010000000101111010100010010111101011000

Above are the sorted Best Cool Notepad Tricks and Pranks that help you play funny pranks on your friends and amaze your friends. Just try it once and see the magic.

LEAVE A REPLY

Please enter your comment!
Please enter your name here