Latest News
Saturday, 13 December 2014

How to lock a folder!

Lock a folder?U doesn't need any software or anything.This method help you not only lock a drive but also hide a drive.


First of all open a drive in your pc where you want to lock your folder.

Open notepad and paste the below script.Save this as "any_name.bat" you can use any name you desire but remmember .bat extension is important.

Current password is "password".To change it just write your desired password in place of "password" in the below script.



cls
@ECHO OFF
title www.hackersofhell.com
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST MyFolder goto MDMyFolder
:CONFIRM
echo ------------------------------------------
echo This is made by UnArm3D from www.hackersofhell.com
echo -------------------------------------------
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 ----------------------------------------------
echo Visit www.hackersofhell.com for more tips and tricks
echo ----------------------------------------------
echo Enter password to Unlock Your Secure Folder
set/p "pass=>"
if NOT %pass%== password 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

After saving a folder name "Myfolder" will automatically created in that drive.Paste all your desired files their.

Now for locking that folder, click on "any_name.bat" file that you created above.Command prompt will open and ask you to lock a drive.Press 'Y' and press enter.


Now you see the folder will automatically disapper from their.

For opening that folder again click on "any_name.bat" file and again command prompt and ask you password.write your password and press enter.

"Myfolder" folder again shown in that drive.Open it and your all file will be there.


  • Blogger Comments
  • Facebook Comments

0 comments:

Post a Comment

Don't spam :)

Item Reviewed: How to lock a folder! Rating: 5 Reviewed By: Unknown