Lock Folder Without Additional Application
If you like to create a folder that is locked with a password, does not need to have a special application such as My Folder Lock, Folder Lock, Lock Folder XP, Folder Vault, etc.. With the simple techniques, you can do this. It is not good, such as application-specific applications mentioned above. But to avoid data from people who still lay with the knowledge the computer is clearly beneficial. Because this technique only to make a super hidden folder, not encrypted.
how? read this article===>>>
1.Create a new folder (the folder name is free, as an example we give the name "mydata")
2.Type under the code to a file (using notepad type) into a folder that you created above
code:
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 here 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
3.after you finish making the code (though quickly copy and paste it), see on line (23), you will find the "password here" <- (change the word "password here" with the password you want, for example 123abc) 4.After that, save the file with "lock.bat" in the folder "mydata". 5. Doble Click File "lock.bat" and the new folder will appear with the name "Private''. 6.To hide the file that we want, you live all the copy and paste the file into the folder "Private", if finished, re-run File "LOCK" before, and the question will appear "Are you sure you want to lock the folder (Y / N)? ". 7.Type "Y" and enter to continue. With the folder "Private" will be locked and lost sight of the eye. 8.If you want to open a private folder before, live LOCK Run file and input the password that you created earlier.

0 comments:
Post a Comment