Wednesday, March 6, 2013

Folder Lock Without Using Any Software :-Folder Security Hide and Lock



Folder Lock Without Using Any Software


Lock your personal Folder with out using any Software; Its Batch (*.bat ) File Trick

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


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
    Save as Locker.bat(Save as OPtion choose all files -filename.bat)
  2. Double click on batch file you have created and you will see a new folder on your desktop or saved location 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…




No comments: