Lock Any Folder Without Any Software!!!

Status
Not open for further replies.

jerin3013

Broken In
NoTe- Its different from invisble as well hidden folder....here u need to have a password with which u can open your filder

here is the code

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 u 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 stuff by satish
echo Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%==TYPE UR 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


Instructions::


1) Copy the give code in a note pad and save the note pad in your pc with the name name.bat (that is with the extension of .bat). you can replace the name portion with anything u want.

NoTe-- In place of password in the code given type your desired password.

2) A batch file will be created where you hav saved. Now double click on it , it will make a folder with the name locker at the same place where the batch file is save.

3) Now add the files you want to be locked in that folder.

4) Double click on the batch file. It will ask for locking the folder formed. Type y(yes). The folder will be locked and hidden.

5) To unlock,double click on batch file again and enter the password in the new window opened.

100% WORKING!!!
 

topgear

Super Moderator
Staff member
@ jerin3013 - Thanks mate for sharing.
If it not your's plz mention the source :D
 

dheeraj_kumar

Legen-wait for it-dary!
This is a very old and very popular and very easy-to-bypass folder lock. Not his for sure, but no source since its available in almost every tech forum, even posted here a couple of times before.
 

giovanni

Right off the assembly line
hey jerin
was on the lookout for something simple to lock folders and this was the best thing to come my way... keep it up!!! no prob if it is repeated....
 

The Conqueror

Elevating Humanity
Yeah This had been posted in Digit sometime earlier.Actually it is not so safe as anyone who has basic knowledge can just edit the .bat file and whoa ur lock is gone!
 

dheeraj_kumar

Legen-wait for it-dary!
Code:
if not exist "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto end
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker
:end

Crack to this so called "protection"
 

Krazzy Warrior

"Aal Izz Well"
Code:
if not exist "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto end
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker
:end
Crack to this so called "protection"

i know that posted in digit sometime before..this is really a good mean of protection...use truecrypt and end..
 

redhat

Mad and Furious
VERY VERY old... please do check the forum before posting.... Around 1 or two years back, I even posted a Visual Basic app. on the same logic on this forum...
Very easily crackable....
 
Status
Not open for further replies.
Top Bottom