PDA

View Full Version : -> Trick To Lock Your Private Folder <-


tushar18
06-02-2008, 12:50 PM
-> Trick To Lock Your Private Folder <-

Suppose you want to lock the folder games in d: which has the path

D:\GamesIn the same drive create a text file and type

ren games games.{21EC2020-3AEA-1069-A2DD-08002B30309D}
Now save this text file as loc.bat
create another text file and type in it

ren games.{21EC2020-3AEA-1069-A2DD-08002B30309D} games
Now save this text file as key.bat
Now you can see 2 batch files loc and key.Press loc and the folder games will change to control panel and you cannot view its contents.Press key and you will get back your original folder.
try it out!!!!!!!

Enjoyyyyyyyyyye

wantedproduction
06-02-2008, 09:31 PM
nice trick-thank you

Porsche_maniak
06-02-2008, 09:35 PM
I knew that but thanks anyway :)

Maxsia
02-13-2009, 10:39 AM
i saw this in the tutorial section b4

safeerrahmed
02-20-2009, 07:37 AM
Good One..

Thanks,
Safeer

daxdax89
02-22-2009, 06:26 PM
Interesting...

metalheart
03-08-2009, 07:03 PM
Are you sure it works in Vista ?

risvile
03-09-2009, 01:59 AM
cls
@ECHO OFF
title Folder Locker
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
echo Folder created.
: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 Locker locked
goto END
:UNLOCK
echo Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%== lockthelocker goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker
echo Locker Unlocked successfully
goto End
:FAIL
echo Invalid password
goto END
:MDLOCKER
MD Locker
echo Locker created succesfully
goto End
:End
PAUSE


any doubts, feel free to shoot:D

senritsu
03-28-2009, 07:10 AM
in both cases, its easy to bypass.
renaming releases the folder... batch file shows the password..

any other way?

kashyap1113
05-07-2009, 09:10 AM
cooooooooooool

deadman7387
05-12-2009, 07:05 AM
in both cases, its easy to bypass.
renaming releases the folder... batch file shows the password..

any other way?

Convert the bat file to an exe....
See here :
http://www.katzforums.com/showthread.php?t=378645