Thursday, June 14, 2012

Create a folder locker ...!!!!!!!

Ensure the confidentiality and personal data is always considered as a sophisticated task.You can use free software to encrypt your data.If third somehow can not use these programs (installation restrictions), then you can protect your data notepad.This trick works in Windows XP, Vista and Windows 7.


       Make Your Own Folder Locker: -
  • Open Notepad [Start -> Run -> Notepad].
  • In Notepad, just copy / paste the code below.

    CODE:
    cls
    :End
    @ECHO OFF
    title Folder Locker [naushadmalik.Blogspot.Com]
    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%==naushadmalik 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


    In the above batch code the password has been set as hack_now.But You can change it by following steps-
    1. Press ctrl+h. A window will come out.
    2. type hack_now in the blank Find what and your desired password in the blank Replace with.
    3. Now click on Replace All.

                                       

    • Now save this notepad file as any name.bat ,here .bat is extension of your file. For now I am creating Hack Now.bat file.




    • Now a .bat (system) file will be created.
    • Double Click on this .bat file and you will see a Locker Folder at the same location where your .bat file is saved.
      .
    • Double click on that Locker folder and store your personal data in it.
    • After storing all your data in that folder again double click on .bat file and pressY there to Lock the folder and press Enter.

    • Now your Locker will hide and only .bat file will be there.
    • Double Click on this .bat file and give your password (here hack_now) and hit Enter the folder(Locker) will be unlocked.

      That's it! Now, every time you open your secret folder you have to enter the password. You can update this folder at any time and infinite number of times.

No comments:

Post a Comment