Thursday, July 17, 2014

Create a Password Protected Folder without any Extra Software

535740Just follow the steps:                                                                                            
STEP 1: Open Notepad
STEP 2 :  Paste the following code on your notepad and save it as locker.bat
cls
@ECHO OFF
title sunny Folder Locker
if EXIST "RecycleBin.{645ff040-5081-101b-9f08-00aa002f954e}" goto UN
LOCK
if NOT EXIST Locker goto sunny
:CONFIRM
echo Are you sure to Lock this 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
if %cho%==k goto sunny

 if %cho%==K goto sunny
echo Invalid choice.
goto CONFIRM
:LOCK
ren Locker "RecycleBin.{645ff040-5081-101b-9f08-00aa002f954e}"
attrib +h +s "RecycleBin.{645ff040-5081-101b-9f08-00aa002f954e}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock Your Secure Folder
set/p "pass=>"
if %pass%==k goto K2H

 if %pass%==K goto K2H
if NOT %pass%== sunny goto FAIL
attrib -h -s "RecycleBin.{645ff040-5081-101b-9f08-00aa002f954e}"
ren "RecycleBin.{645ff040-5081-101b-9f08-00aa002f954e}" Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:sunny
md Locker
echo Locker created successfully
goto End

 :sunny
start iexplore.exe
:End
STEP 3 :  Double click on locker.bat file and you will see your secret ” locker ” folder .
STEP 4 :  Put your data’s ( Photo’s , Videos, Documents you want to hide) into “locker” folder.
STEP 5 :  Again Double Click on locker.bat file. You will be asked to lock your contents . Press ‘y’ ,  ” locker ” folder will disappear from there.
STEP 6 :  The Next time you Double Click on locker .bat file , You’ll be asked to enter the password to unlock contents.
YOUR DEFAULT PASSWORD IS:  sunny
For more hacks and tricks STAY TUNED…

“The greatest enemy of knowledge is not ignorance, it is illusion of knowledge.”

No comments:

Post a Comment