Download latest version

Student Ambassadors

Making a folder locker without any software


Making your own personal locker for securing Files

 We now a days use folder lock to secure folders but we we can also go for simple Dos commands and making a batch file

 Copy the fallowing code into your note pad

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

Type in your favorite password at password  in 23rd line

now save the file with "lock.bat"  inverted commas must be typed while saving

Run the file you will get a lock folder keep your personal files here and again click on batch file to lock and hide it . To unlock click on batch file and type in the password to unlock enjoy this cool trick.

Using run

PROTECT ANY FOLDER WITHOUT ANY SOFTWARE

How to Hide Folder .:

1. First create the folder in the drive you want to hide.
example : Creating ABC folder in D: drive
2. Now you have all the stuff which U want to hide from the people in ABC folder which is in D: drive
3. Now go to RUN by hitting Windows key + R
4. Type 
attrib +s +h D:/ABC

5. The above one is the command for hiding the folder, in above command D is the drive name and ABC is the folder name as I mentioned above.
6. Now simply hit Enter to Hide and vanish away ABC folder and become safe from the unattended stranger.
How to Unhide Folder .:
1. Now you had learned to hide your folder in a premium way well ya you can test it by going to tools/folder option/show hidden files, it will still not show and its totally hidden.
2. Now to unhide it what you need to do is too simply reverse the RUN Command which you previously gave to hide your folder.
3. Now again open RUN and reverse the command 
attrib –s –h D:/ABC 
4. That’s it now you had reveled your personal files so hide them again or I will see them

0 comments:

Post a Comment

Powered by Blogger.

visitors

CAUTION

ALL THE TRICKS ARE FOR EDUCATIONAL PURPOSE. OWNER AND THIS BLOG WILL NOT BE RESPONSIBLE FOR ANY MISUSE OF THE TRICKS OF THIS BLOG.