Make a hidden password protected folder without any software

kpg

Well-known member
  • Jun 3, 2008
    3,445
    1,805
    113
    In My Home
    we're now going to make a hidden folder
    tongue.gif
    , it is hidden by a little program
    evil.gif

    when you open this program,you should type the correct password in order to see the hidden
    folder


    OK lets get back to work!!!!!
    coolsmiley.gif


    What your going to want to do now, is open up your Notepad if you don’t know how then please quit this thread and die….......
    Start – Run – notepad.exe
    afro.gif

    then copy this code



    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 Enter password to lock folder or for cancel press N
    set/p "cho=>"
    if %cho%==XXXX 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%==XXXX 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



    replace the XXXX by the password you want
    save it with any name but the extension should be .bat
    i.e secret folder.bat
    tongue.gif

    That's it !! too easy , but too cool !!
    cool.gif