Wednesday 3 April 2013

HOW TO CREATE PASSWORD TO FOLDER WITHOUT ANY SOFTWARE

To get latest update follow my new website http://www.errorcode.in/

1.Open  NOTEPAD
2. Copy and Paste the below code

           cls 
@ECHO OFF 
title computer-tricks-corner.blogspot.com
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK 
if NOT EXIST MyFolder goto MDMyFolder 
: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 
echo Invalid choice. 
goto CONFIRM 
:LOCK 
ren MyFolder "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" 
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" 
echo Folder locked 
goto End 
:UNLOCK 
echo Enter password to Unlock Your Secure Folder 
set/p "pass=>" 
if NOT %pass%== lifekee goto FAIL 
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" 
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" MyFolder 
echo Folder Unlocked successfully 
goto End 
:FAIL 
echo Invalid password 
goto end 
:MDMyFolder
md MyFolder
echo MyFolder created successfully 
goto End 
:End

3.save the file like lock.bat 

4.change the password by  delete lifekee on the code  and enter your password.
5.double click on lock.bat
6.myfolder  will be created.open myfolder and insert content eg: video,audio etc..

7.after inserting content double click on file lock.bat.
8.the command prompt will open type y and press enter


9.now your myfolder is hiddened.To view the file double click on lock.bat
10.command prompt will open it will ask enter your password .
11.Type your password lifekee and press enter

12.now your myfolder will open

13.important point don't rename Myfolder

To get latest update follow my new website http://www.errorcode.in/


4 comments: