Sunday, November 8, 2009

FOLDER LOCK

Hello friends...Hope you guys are enjoying my posts on Windows XP tricks...Today I will show you how to lock your folder, i.e to make your folder password-protected without any kind of software...It is possible by using some registry tricks...This trick will be very useful for those who need privacy in a multi-user system...So enjoy...

1. First copy the following code paste into 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 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 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


2. Now you can see "type your password here" in the 23rd line of the code...Delete that and type your own password there...

3. Save this file with any name and the file extension should be ".bat"...

4. Now double click the batch file...It will create a folder named "Locker"...Put the files in that folder which you want to lock...

5. Now double click on the batch file to lock the folder...Dos prompt will appear, asking "Are you sure you want to lock the folder"...



6. Press "Y" followed by "Enter"...The folder is locked now...

7. Now if you want to unlock the folder double click that batch file again...The dos prompt will appear, asking for the password...Put the correct password followed by Enter...Your "Locker" is now opened to you...



You are done...Your privacy is now in your hand...Have fun :-)

Note:
1. Don't delete the batch file.
2. Don't rename the folder "Locker".

Happy Hacking...Enjoy...

For educational purpose only...Do not misuse it...

10 comments:

  1. m not able to copy the code.....the site is copy-writed......

    ReplyDelete
  2. AWESUM BRODA......
    u r best ;).........

    ReplyDelete
  3. is there any way to get around the fact that someone can right click on the bat file and then click edit - they will see the original code with the password...

    ReplyDelete
  4. @ Broochi: In batch programming no way to restrict the access of the source code...

    Convert the bat file into exe by a program (http://www.jitbit.com/bat-to-exe/) and tell me whether it works or not.

    Thanks!

    ReplyDelete
  5. hey bro can u help me hack my locker in folder lock 7 as it says i enter wrong password but i know i am using correct password plz help so i can unlock my locker in anyway possible...thanx in advance

    ReplyDelete
  6. @ Abhi: Follow: https://www.youtube.com/watch?v=5sc6UczJ0zw

    Comment if it's working or not...

    Thanks !

    ReplyDelete
  7. hi Rajat Das, This video is unavailable (https://www.youtube.com/watch?v=5sc6UczJ0zw

    ReplyDelete
  8. Hi,

    Try anytime: https://www.youtube.com/results?search_query=crack+folder+lock+7&sm=3

    ReplyDelete

If you like this post, comment please...