Kamis, 27 September 2012

How to protect your computer's folder without application

So, today i wanna share how to make a password in your computer folder.
If you share your computer with others, and you have some "top secret" stuff in it, this post will help you.. :)

1. Make a new folder
2. Create .txt file in that folder and copy this code
Code:
Quote:
Quote: 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. Look at the 23rd line, or search (ctrl+f) for : password here
4. Replace it with your password. Example :
    if NOT %pass%== baracuda goto FAIL
5. Then save as the file with name "locker.bat"
6. Double click locker.bat and then it will create a new folder "Private"
7. Move your "top secret" file to that folder
8. Then double click on locker.bat and a dialogue box will appear, "do you want to lock your folder? Y/N"
9. Answer it with Y, and puufffff, your private folder gone...
10. if you want to open it again, just double click locker.bat and enter your password :)

this method work on pen-drive too :D no software required
happy password-ing XD


credit to : h3n9k4 @forum.detik

Tidak ada komentar:

Posting Komentar