Ticker

6/recent/ticker-posts

5 Super Amazing Notepad Tricks, Commands and Hacks You Should Know

There are many people who use Notepad in their daily life but they use it only for the purpose of writing. They don't know about the amazing hacks of Notepad which can surprise them. And they can amaze their friends by such coolly tricks. So let's get started.



1) Password Protect Folde
r:

Do  you know that you can protect your important folder of your computer using a notepad? Below I am writing a code, you simply copy it and paste it in your notepad.

@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%== computertechnology 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

After pasting the code, simply replace the password(computertechnology) with your chosen password. Now save the file as private.bat and with file type as All Files(*.*)

You can move files and folders inside private.bat after entering the password.



2) Shutdown your computer 

You know you can shutdown your computer using notepad. You simple copy the below code and paste it in your notepad.

@echo off
Shutdown.exe -s -t 10
cls
msg * I love nature!

You simply replace the  I love nature! with your  I love nature shutdown message.Now save the file in .bat format(for example turnoff.bat)

3) Matrix Effect

This is an amazing trick of notepad by which you can make Matrix Effect on your computer. Simple open  your notepad and paste the following code in it. 

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

Now simply save the file as matrix.bat.


4) Eject CD Drive Continuously:

This is another trick of notepad by which you can prank with your friends. This hack will eject  your CD drive continuously. So, simply copy the below code and paste it into your notepad.

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

After pasting the code, save the file as cdopen.vbs. Now, to stop this going fun, open task manager and close the process wscript.exe.

5) Use Notepad as a Diary:

You can create  a personal diary on your Notepad. And this trick will help you to save your notepad file with specific date and time.Simpy follow the given steps.

Open your notepad.
Type .Log
Save the file as log.txt

So this was today's article. I hope you enjoyed it. Share it with your friends. Now I'll meet with you in another article. Smile

Post a Comment

0 Comments