Friday, December 16, 2011

Make your own Folder Locker/Folder Guard



After a long gap, I am on blogger again! This time I am here with Folder locker!!

Firstly,I found this content on internet but can not remember the site name. So I apologize to the coder!

There's a lot of "Folder Lockers / Folder Guards / Folder Protectors" etc software over the internet. But the problem is that most of them are not secured and most of the time can be broken easily.


Why need of a Folder locker?
Its important for you to have some privacy on your PC you don't want to show others. That's why these applications keep protects your folders could not be seen by anyone.


So, why this?
Imagine, you need a Folder Locker software and to get full protection you need to buy that!
On the other hand you have your own codes and you make your 
1. Own Folder Lockers every time. 
2. No need to buy.
3. You can change the codes.
4. You can change the Title.
5. Give you full protection.
6. Finally you are the master of that. (I think you got understand what I am saying)


Here it is....
Just follow the instructions. Trust me it's simpler than you think.

Instructions:
1. Open notepad (start>all programs>accessories>notepad or C://windows/notepad.exe)
2. Copy the code below into notepad.
3. Replace "type your password here" with your Password.
4. Save as "Name.bat"
Complete!!! See I told you its too easy.

Now, how will it work?
Double clicking on "Name.bat" you will get a folder named "Locker". Put your private files or folders inside this "Locker". Again clicking on "Name.bat" a command prompt will open. Type 'y' to lock and see the magic.

Windows XP
Windows Seven
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 and 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
cls
@ECHO OFF
title Folder Locker
if EXIST "GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}" goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo Are you sure and 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 "GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}"
attrib +h +s "GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}"
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 "GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}"
ren "GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}" Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
:End

2 comments:

Thanks - Jajabor, 2014