Monday, July 26, 2010

Lock a Folder Without using a software

Most of us often thought about hiding a personal files and personal information,crucial data from others.I already presented you the idea of hiding,encrypting files in a pic now i'll let u know how to lock a folder without any software.
So lets start the Trick
1)copy the below code to a notepad
 __________________________________________________________________________________
cls
@ECHO OFF
title Folder Locker
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo
echo ......................................................
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 Locker "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo
echo ......................................................
echo Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%== type your password here goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker
echo Folder Unlocked successfully....
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
:End
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
:End
___________________________________________________________________________________
2) set the desired password  by placing it in the position of "type password here in code"..(You will find “type your password here” in that code replace with the desired password )

3)save it as Locker.bat

4) now when  you double click the Locker.bat a folder called locker is created automatically there itself..
Place the desired files which you want to hide in that folder .


5)next run Locker.bat again this asks to lock the folder click yes (y)

 6)your folder then disappears gets inside the locker ...when ever u want to recover files just double click Locker.bat
it asks for a password ,enter that and access ur data ..


hope u like it..
comment me if u are impressed .

No comments:

Post a Comment