Create a Password Protected Folder Without any Software

No comments

Nowadays we can search on web and find different programs that make folders password protected. But that take a long time. For that in this post i'll show you how to create password protected folder without any third party program.

1. Create a new folder on desktop.

2. Open that folder and create a new text document.
And paste text given below into that document.


cls
@ECHO OFF
title Folder Private
if EXIST "HTG Locker" 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 "HTG Locker"
attrib +h +s "HTG Locker"
echo Folder locked
goto End
:UNLOCK
echo Enter password to unlock folder
set/p "pass=>"
if NOT %pass%==
YOUR PASSWORD goto FAIL
attrib -h -s "HTG Locker"
ren "HTG Locker" Private
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Private
echo Private created successfully
goto End

:End




3. Between "YOUR PASSWORD" type password you want.
4. Save file as locker.bat



And now you can see two files in folder. You can delete document.
5. Open locker.bat file and its automatically create a new Private folder.



6. Move files you want to hide into that Private folder. 
7. Now again open locker.bat, press on Y key on keyboard and hit enter. As you can see Private folder disappeared.
8. To unhide Private folder you need to open locker.bat file which asks to type password. After you type in password your folder again come back.

No comments :

Post a Comment