To lock a folder with out any software just follow the steps
1. Copy and paste the following code (in green color) in to Notepad.
2. Type your password in place of "Type your password here"
3. Save the file with *.bat extension instead of *.txt
4. Now double click to open the file.
5. When you open it, a new folder named Locker will be created in the same place.
6. Move all the folders and files you want to lock into this folder.
7. Now double click the batch file again and in the confirmation type 'y' to lock the folder, and the locker folder will disappear.
Whenever you want to unlock the folder, open the batch file and enter the password, the locker folder will reappear again.
/***********Start Copying here************/cls@ECHO OFFtitle Folder Lockerif EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCKif NOT EXIST Locker goto MDLOCKER:CONFIRMecho Are you sure u want to Lock the folder(Y/N)set/p "cho=>"if %cho%==Y goto LOCKif %cho%==y goto LOCKif %cho%==n goto ENDif %cho%==N goto ENDecho Invalid choice.goto CONFIRM:LOCKren Locker "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"echo Folder lockedgoto End:UNLOCKecho Enter password to Unlock folderset/p "pass=>"if NOT %pass%==type your password here goto FAILattrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Lockerecho Folder Unlocked successfullygoto End:FAILecho Invalid passwordgoto end:MDLOCKERmd Lockerecho Locker created successfullygoto End:End/****************Stop Copying here*************/