Saturday, May 14, 2011

Trick Lock Folder Without Software

Want to lock and secure a file only with the code, and without the use of supporting software?

1. Go to Start -> All Programs -> Accessories -> Notepad
2. Copy and paste the following code into notepad

CLS
@ ECHO OFF
title Folder Locker
if EXIST "Control Panel. {21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
: CONFIRMED
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% == type your password here 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
: End

3. Then save the notepad file with the name Locker.bat
4. Close and then open again the file, and will set out the order to enter a password (Enter Password) to unlock the folder
5. Enter your password code
6. Click again, and will be displayed command "Do You Want to lock the file Y / N".
7. Type "Y" and press Enter.

No comments:

Post a Comment