Tuesday, December 24, 2013

How to Lock a Folder Using a Batch File

Steps

  1. 1
    Open Notepad.
    Ad
  2. Copy the code. Just like the image above.
  3. cls
    @ECHO OFF
    title Folder Locker
    if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B303
    09D}" 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%==(************) 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
     
  4. 3
    Change the password. Where it says "password here", change it to your desired password.
  5. 4
    Save the file with name "locker.bat" and as all types and click "Save".
  6. 5
    Close the window.
  7. 6
    Run the "Locker" file by double-clicking it. You will get a folder named Private.
  8. 7
    Move all the things you want to hide and again run locker.bat.
  9. 8
    Follow the instructions.
  10. 9
    Done. No one can access your folder without the password.

1 comment:

  1. nice tips and nice blog
    kya aap computer hardware ke bare me kuch tips de sakte hai

    ReplyDelete

Blog Archive