Powered by Blogger.

Friday, April 2, 2010

Lock folder without any software 1

Hi, Guys Here a new Trick to lock Folder without using any Software.
You need to just a bit editing in Notepad and Save it as Batch files.

Here the Method
Quote:
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%== 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


   1. Exactly Copy paste it In Note pad and save it as a Batch File

   2. Double click on batch file you have created and you will see a new folder on your desktop
called “Locker”

   3. Now add the files you want to be locked in that folder.

   4. Double click on batch file you have created again, and it will ask you if you want to
hide the folders

   5. Type Y For Yes. The folder will be locked and hidden.

   6. To unhide, double click batch file you have created , type in your password and press enter…

0 comments

Post a Comment