Sunday 24 November 2013

BEST WAY TO LOCK & HIDE A FOLDER

BEST WAY TO LOCK & HIDE A FOLDER




YES ,’ WE CAN do this without any software just using notepad. IT hide & lock the folder you want to lock. And also it is too easy to do that just follow simple steps. It uses concept of Bat programming  but don’t worry if you don’t know what is bat programming than also no problem…
STEPS

è Open notepad
è Past the code written  bellow




cls
@ECHO OFF
title beginerhack.blogspot.com
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST beginerhack goto MDbeginerhack
:CONFIRM
echo Are you sure to lock this 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 beginerhack "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 Your Secure Folder
set/p "pass=>"
if NOT %pass%== hackpass  goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" beginerhack
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDbeginerhack
md beginerhack
echo beginerhack created successfully
goto End
:End





èNow save this with extention  .bat    example ( lock.bat ) .


è Now move this file to same place where file exist . which have to lock .
è Now click on lock.bat . you see a new folder created named       beginerhack.


 è Now move folder you want to lock in this folder .
 è      Than click  “lock.bat”  commond promt open  than enter“y” .


è      Now you see file  “beginnerhack”  disapeare.
è     To open it again click on  “lock.bat”  commond promt open & ask for password .


è  You see “hackpass” is  highlighted in code (above) . it is default password you can change it . whatever you wan’t to be your password.

0 comments:

Post a Comment