Monday 21 December 2015

Password Protected Folder Without Any Software

Hey guys in this post you will learn to protect a normal folder better without any external software but simply using notepad.PC might contain some sensitive data which you don’t want anyone to access.Just create a batch file and you got your secret vault.Just Copy given code and paste it.

Open the Notepad
Copy the following code into the notepad.
cls
@ECHO OFF
title infogeekers
if EXIST “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” goto UNLOCK
if NOT EXIST folder goto MD folder
:CONFIRM
echo ——————————————-
echo visit www.INFOGEEKERS.com
echo ——————————————-
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 folder “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
attrib +h +s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
echo Folder locked
goto End
:UNLOCK
echo ———————————————-
echo     Vist INFOGEEKERS.com
echo ———————————————-
echo Enter password to Unlock Your Secure Folder
set/p “pass=>”
if NOT %pass%==infogeekers goto FAIL
attrib -h -s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
ren “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” folder
echo Folder Unlocked successfully by Infogeekers.com
goto End
:FAIL
echo Invalid password
goto end
:MD folder
md folder
echo folder created successfully
goto End
:End

Now change the password in the if NOT %pass%==infogeekers goto FAIL line,replace text of infogeekers with your password for the folder lock.
Save this file as locker.bat or any other name and you are done.
     Note :- .bat Extension is must.

Open locker.bat,new private folder will be created automatically.
Move all your stuff which you want to hide and make it secure in the private folder.
Again open the Locker.bat file and press ‘Y’ to lock the private folder with your password.
  

To open the secured files open the locker.bat file Enter your password and your files are there for you.
    

   Hit enter and private Folder is there for you....

‡☞kislay

No comments:

Post a Comment