Cool Notepad Tricks
Hello readers welcome to our blog .Notepad is a simple text editor that is found in all computer.Generally we use notepad for writing.But here we are providing you the tricks of notepad that are not just for writing.By using these tricks you can do many things.
Notepad Tricks
1- Shut Down Your Computer
You have to shut down your computer through start button and clock on shut down.But here you can shut down your computer by clicking on this icon. Just open your notepad and type below command in your notepad.And save the file with .bat extension.
" @echo off
msg * System will now shut down
shutdown -c “Bye!” –s "
" @echo off
msg * System will now shut down
shutdown -c “Bye!” –s "
2- Make Diary With Notepad
In this trick if you write anything in notepad it will automatically save with date and time.To do this follow below steps.
1-Open Notepad.
2-Type .LOG in first Line.
3-Save the file as log.txt
Now if you write something in this file it will automatically save with date and time.
3- Matrix Effect
Have you watched the movie, “Matrix”? You might have seen string of green characters appearing at the screen randomly. We are going to do something similar with the help of Notepad. To use this Notepad trick, follow these steps:
1-Open Notepad.
2-Type this command:
@echo off
color 02
:start
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto start
3-Save the file as Matrix.bat
4- Click on Matrix.bat and the show begins.
4-World Trade Center Attack
According to this trick, if you enter the flight number of the flight that struck the twin tower, i.e. Q33N in notepad and then change the font type to ‘wingdings’ and the font size to 72, then you’ll see a very strange thing.
5- Create Password Protecting Folder With Notepad
1- Open Notepad .
2- Copy and paste this below 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%== Ocean Of Tricks 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
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%== Ocean Of Tricks 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
In above code ocean of tricks is written is the password. you can make your own passowrd by replacing ocean of tricks with any other word.
3- Save the file as private.bat with file type all files
4- When you click private.bat it will create private folder . Place your files in this folder and close the folder.
5-Now when you open this folder it will require password.
If you like my article please share it.Keep visiting us for new tricks.