How to Create a simple folder locker

by Lucyontheway On March 17, 2009 | Miscellaneous | Hits: 55
Software you need: notepad



Step 1 Open up notepad



First you need to open up notepad. Go to start, run and type in notepad or go to start- all programs - accesories - notepad.



Step 2 Now enter the code



Now enter the code below into notepad, and put in your password that you want to use for the Folder Locker were it says YOUR PASSWORD HERE.



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.

pause

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%==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

pause

goto end

:MDLOCKER

md Locker

echo Locker created successfully

pause

goto End

:End



DON'T FORGET TO PUT IN YOUR PASSWORD WERE IT SAYS YOUR PASSWORD HERE



Step 3 Save the document



Now you need to save the document as File Locker.bat You must make sure that you have .bat at the end. This will save it as a batch file. Save it to the location were you want the Folder Locker to be.



Step 4 Now just open it



Now just go to were you saved the Folder Locker and open it. It should make a folder called locker. To lock the Folder you need to open the batch file. It should ask you if you want to lock the folder, all you have to do is type Y for yes and N for no. and the folder should disapere. To unlock the folder just open the batch file again and enter your password.


About this article: "How to Create a simple folder locker", under Miscellaneous software notepad, is published by Lucyontheway; If you have any question on this article, please contact the author directly.
  rated 0 by 0 people    Link to this:

© 2009 Softwarehowtos.com - All Rights Reserved Worldwide.