Results 1 to 10 of 10
  1. #1
    GeneralBr3tt's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    Dave's Closet
    Posts
    356
    Reputation
    28
    Thanks
    29
    My Mood
    Pensive

    How To Make A Password'd Folder!

    Step 1.
    Create A Main Folder On Your Desktop
    *Note: This Folder Will Not Be Protected!

    Step 2.
    Open the folder and create a notepad/text document file.

    Step 3.
    Copy/Paste the code below into the file and change PASSWORD to your desired password.
    Code:
    cls
    @echo off
    title Folder Locker
    IF EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B303**09D}" GOTO UNLOCK
    IF NOT EXIST Locker GOTO MDLOCKER
    echo Folder Created.
    :CONFIRM
    echo Are you sure you 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-08002B303**09D}"
    attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B303**09D}"
    echo Folder Locked.
    GOTO END
    
    :UNLOCK
    echo Enter password to unlock the Folder :
    set/p "pass="
    IF NOT %pass% == PASSWORD GOTO FAIL
    attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B303**09D}"
    ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B303**09D}" LOCK
    echo Folder Unlocked Successfully.
    GOTO END
    :FAIL
    echo Invalid Password!
    GOTO END
    
    :MDLOCKER
    md Locker
    echo Folder created.
    
    GOTO END
    :END
    Step 4.
    Click 'Save As...' , name the txt document 'test loader.bat' , then change 'Save as type' to All Files.
    *Note: Leave the Encoding to 'ANSI'.

    Step 5.
    Double click 'Test Loader.bat' and a file named 'Locker' should show up.
    *Note: 'Locker' is the file the password will be on, with the code above 'Locker' can be the only name of it.

    Step 6.
    Double click 'Test Loader.bat' again and it should show up as a cmd prompt, type 'Y' then 'Enter'.

    Step 7. Now When You Double Click 'Test Loader.bat' it should show up as a cmd prompt and tell you to enter your password. When You Want To Lock Your Folder Double Click 'Test Loader.bat' And Type 'Y'.

    It Is Now Done.
    Rep Please If You Used This And It Worked.
    If You Need Help, Reply Below Or Contact Me.

  2. #2
    abuckau907's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    other side of the wire
    Posts
    1,342
    Reputation
    162
    Thanks
    239
    My Mood
    Cold
    I googled "batch encrypt folder", this was within the top 5 results:

    How to Create a Password Protected Folder without any Extra Software
    ^^even has pictures. Code is the same except for the caption of the prompt.

    Quote from bottom of the link:
    Attribution note: We found this script on dozens of different web sites going back many years. We have no idea who first created the script, so we’ve omitted any sort of attribution link. If you do have proof that you first created the script, contact us and we’ll adjust the article accordingly
    Thanks for sharing.
    Last edited by abuckau907; 09-09-2013 at 11:52 PM.
    'Some things that can be counted, don't matter. And some things that matter, can't be counted' - A.E.
    --
     

    My posts have some inaccuracies/are wrong/wrong keyword(s) used.
    They're (maybe) pretty close, and I hope they helped you, not created confusion. Take with grain of salt.

    -if you give rep, please leave a comment, else it means less.

  3. #3
    rchayne's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Location
    Australia
    Posts
    1,717
    Reputation
    276
    Thanks
    666
    My Mood
    Psychedelic
    *coughPORNcough*
    https://www.mpgh.net/forum/443-crossf...m-service.html


    [IMG]https://www.danasof*****m/sig/RChayne.jpg[/IMG]

    If I farmed for you!
    If I did a fucking awesome job!


  4. #4
    GeneralBr3tt's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    Dave's Closet
    Posts
    356
    Reputation
    28
    Thanks
    29
    My Mood
    Pensive
    Quote Originally Posted by rchayne View Post
    *coughPORNcough*
    thats what I use it for :3

  5. #5
    ArnavKumar's Avatar
    Join Date
    Oct 2013
    Gender
    male
    Posts
    7
    Reputation
    14
    Thanks
    0
    Nothing worked, Folder is created but dos prompt shows this error
    The filename, directory name, or volume label syntax is incorrect.
    File not found - Control Panel.{some numbering code}
    Folder Locked.

  6. #6
    Suur Papa's Avatar
    Join Date
    Nov 2013
    Gender
    male
    Posts
    44
    Reputation
    58
    Thanks
    24
    My Mood
    Bitchy
    awsome!" Love it ( now i can hide my porn there mwhahaha jk ;D)

  7. #7
    dodac123456789's Avatar
    Join Date
    Feb 2012
    Gender
    male
    Posts
    585
    Reputation
    10
    Thanks
    13
    My Mood
    Amazed
    Thanks man,this is gonna come in handy

  8. #8
    GeneralBr3tt's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    Dave's Closet
    Posts
    356
    Reputation
    28
    Thanks
    29
    My Mood
    Pensive
    Quote Originally Posted by ArnavKumar View Post
    Nothing worked, Folder is created but dos prompt shows this error
    The filename, directory name, or volume label syntax is incorrect.
    File not found - Control Panel.{some numbering code}
    Folder Locked.
    This is an error, every time your gonna have to change the name of the folder to 'locker'

  9. #9
    ArnavKumar's Avatar
    Join Date
    Oct 2013
    Gender
    male
    Posts
    7
    Reputation
    14
    Thanks
    0
    Quote Originally Posted by GeneralBr3tt View Post
    This is an error, every time your gonna have to change the name of the folder to 'locker'
    Good work done, but i am still not satisfied.
    Just zip your folder and change the extension to .jpg or .dat

    When you want your folder back rename it and no need for this much coding.

  10. #10
    Borwe's Avatar
    Join Date
    Nov 2013
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    .dll kills anyones interest in even deleting it.

Similar Threads

  1. How to make an invisible folder for hiding Stuff.
    By mostwanted in forum Programming Tutorials
    Replies: 36
    Last Post: 04-19-2009, 05:08 AM
  2. Replies: 3
    Last Post: 01-28-2009, 09:16 AM
  3. Replies: 0
    Last Post: 02-06-2008, 02:30 AM
  4. how can i make a password on my hack
    By 123456789987654321 in forum WarRock - International Hacks
    Replies: 4
    Last Post: 06-24-2007, 04:50 PM