chitika

Saturday 21 June 2014

Keeping Password For Any Folder With Out Software


Note:-All the tutorials and posts in this site are only for educational purpose and every thing should be tried at your  own risk this should not be used to harm any one or disturb any others private policies by any means.
1)      Open the Notepad.exe
2)      Copy the following code into the notepad.
3)       
Quote: cls
@ECHO OFF
title Folder Private
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Private goto MDENTER PASSWORD TO OPEN
:CONFIRM
echo -----------------------------------------------------------
echo ================== extremetechinnovators.blogspot.in ==================
echo -----------------------------------------------------------
echo Are you sure you want to lock the folder(Y/N)
echo Press (Y) for Yes and Press (N) for No.
echo -----------------------------------------------------------
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 -----------------------------------------------------------
echo ================== extremetechinnovators.blogspot.in ==================
echo -----------------------------------------------------------
echo Enter password to unlock folder
set/p "pass=>"
if NOT %pass%== YOUR PASSWORD 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
:MDENTER PASSWORD TO OPEN
md Private
echo Private created successfully
goto End
:End
4)    Now change the password in the if NOT %pass%==  YOUR PASSWORD  goto FAIL line replace text of Your Password with your password for the folder lock.
5)    Now save this file as locker.bat or any other name followed by .bat and you are done.
6)    Now Open the Locker.bat file and enter your password to open a private folder of yours.



7)    Now copy paste the files which you want to hide and make it secure in the private folder.
8)    Now again open the Locker.bat file and press 'Y' to lock the private folder with your password.

9)    Now to again open the secured files open the locker.bat file Enter your password and your files are there for you.

0 comments:

Post a Comment