Pages

Saturday, May 5, 2012

Secure Your Private Folder

Make Your Own Custom Folder Locker

Today many of third parties software are online but they required to purchase them which a normal visitor can not do, So here is yourself own folder locker, just create it and guard your files saftely. Thus is far good and simple.

How To Make It?
Just Copy The Below Code And Paste It Into A NotePad File Then Save It To .bat Format.Your Folder Locker Is Ready To Work.



Quote:
Quote: cls
@ECHO OFF
title Folder Private
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Private 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 Private "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%== password goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Private
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Private
echo Private created successfully
goto End
:End

Note : The default password is Password


If You Want To Change It You Can Change It By Going Into 23 Line And Change The Word (password) What Ever You Want.
After Saving This In .bat Format Run This Application Then It Will Make A Folder Name (Private) Where You Save This File. Now You Can Copy Paste Your Data In This Folder And Run The Application And Enter (Y) To Lock Or (N) To Exit.Then Press (Enter)
When You Want To Open Your Folder Run The Application And Enter Your Password And Press (Enter)



1 comment: