Friday, 20 May 2016

How To Make A Password Protected Folder That Hides Itself All Using Notepad


Notepad is a text editor used to type and edit letters. Most of us didnt know the power of notepad.Most the programme can be written using notepad only.

Today i am going to show you a trick by which you can make a folder that hides itself in god mode and can only unlocked by entering a password.This trick requre only notepad no external software required. 

So lets begin

How To Make A Password Protected Folder That Hides Itself All Using Notepad-

Step1- If you are using windows xp or below go to start and find notepad in utilities.
for windows 7 and above users go to start and type notepad and pess Enter key.

Step2-Paste the following code in notepad
TITLE SECURE FOLDER
 COLOR 03
 ECHO OFF
 SET CPSD=rahul
 CLS

:START
 IF EXIST "rahul" GOTO HIDE
 IF EXIST "GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}" GOTO SHOW
 GOTO rahul

:HIDE
 CLS
 ECHO.
 ECHO ------------------------
 ECHO SECURE FOLDER - BY rahul
 ECHO ------------------------
 ECHO.
 ECHO.
 CHOICE /C YN /M "Are you sure you want to lock the folder?"
 IF /I %ERRORLEVEL% EQU 2 EXIT
 REN "rahul" "GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}"
 ATTRIB /S /D "GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}" +H +S
 CLS
 ECHO.
 ECHO ------------------------
 ECHO SECURE FOLDER - BY rahul
 ECHO ------------------------
 ECHO.
 ECHO.
 ECHO Folder locked successfully!
 PAUSE>NUL
 EXIT

:SHOW
 COLOR 03
 CLS
 ECHO.
 ECHO ------------------------
 ECHO SECURE FOLDER - BY rahul
 ECHO ------------------------
 ECHO.
 ECHO.
 ECHO Please enter the password to unlock the folder...
 ECHO.
 SET/P "PSWD=>"
 IF /I %PSWD% EQU %CPSD% GOTO UNLOCK
 COLOR 0C
 CLS
 ECHO.
 ECHO ------------------------
 ECHO SECURE FOLDER - BY rahul
 ECHO ------------------------
 ECHO.
 ECHO.
 ECHO The password you entered is incorrect!
 PAUSE>NUL
 GOTO SHOW

:UNLOCK
 ATTRIB /S /D "GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}" -H -S
 REN "GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}" "rahul"
 CLS
 ECHO.
 ECHO ------------------------
 ECHO SECURE FOLDER - BY rahul
 ECHO ------------------------
 ECHO.
 ECHO.
 ECHO Folder unlocked successfully!
 PAUSE>NUL
 EXIT
 :rahul
 MD rahul
 CLS
 ECHO.
 ECHO ------------------------
 ECHO SECURE FOLDER - BY rahul
 ECHO ------------------------
 ECHO.
 ECHO.
 ECHO Secure Folder created successfully! Put your files in it and secure it. You can unlock it anytime.
 PAUSE>NUL
 EXIT

Step3-Save the file as "abc.bat".
replace abc with your desire name but keep the extention ".bat".


Step4- Now when you open the file you will a new folder created.


Step5- Now it will ask you to lock the the folder press 'y' for yes and 'n' for no.


Step6- To open folder click on file again and enter password "rahul".





That's all Done.Remember you can change your password by editing the code.Hope you like this tutorial if you have any concern comment it below and share this trick with your Friends.

No comments:
Write comments