Currently I am reading Deception Point by Dan Brown and the book's good as far as I've read. Remember, I didn't mean "clean". Well, there's no use to beat about the bush; and let's get to the point. During one of those breaks I take occasionally while reading a book, I've stumbled upon a code for creating a folder lock i.e., to lock a folder so that it's contents cannot be seen. Very useful for guys like me who keep their gf's photos in the system. Before I give you the code, lemme explain you how it works.
What you do is, open a notepad file and copy the given code as it is. Where there is a red color, write your own password and save the file with "locker.bat" under All Files option in the notepad Save As.. window. Save this at a location where you want the "locked folder" to be created. Close the notepad window and you'll see a MS-DOS application with the name "locker". Now double-click that application and a folder with name "Locker" is created. Now dump all your secret files into that folder and run the MS-DOS application again. A window will appear askin whether you want to lock the folder. Press 'Y' and lol!!ur folder has disappeared. Now all you've to do to get that back is to run the MS-DOS application once again and type the correct password (the one u gave in the place of the red color text)
Don't get restless now because I am giving you the code below..
cls
@ECHO OFF
title Folder Locker
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD
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
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%==
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD
ren "Control Panel.{21EC2020-3AEA-1069-A2DD
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
:End
Try the code above and if you still don't get it, try the following link
http://amazingwebsite.googlepages.com/sri
Goodbye, hope to share many more things with you soon....