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 will be slow, so people will be 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
If you run this code, any information stored on your complex drive will be erased. 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.