03 Dec, 03:16PM in sunny Singapore!

Locking files without software!

Subscribe to Locking files without software! 13 posts

Please Login or Signup to reply.
  • [DVD]'s Avatar
    115 posts since Nov '07
    • 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 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%==type your password here 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


      1. Paste the above code in notepad. (remember to put in your password)
      2. Save it as batch file(with extension .bat).Any name will do.
      3. Now you see a batch file. Double click it to create a folder locker.
      4. A new folder named Locker would be formed at the same location.
      5. Now brings all the files you want to hide in the locker folder.
      6. Now double click the batch file to lock the folder namely Locker.
      7. If you want to unlock your files,double click the batch file again and you would be prompted for password.
      8. Enter the password and enjoy access to the folder.

      Drop a reply if you like it. Mr. Green

  • Moderator
    ndmmxiaomayi's Avatar
    53,307 posts since Aug '05
  • ctstalin's Avatar
    3,316 posts since Dec '04
  • Darkness_hacker99's Avatar
    31,746 posts since Jun '05
    • Originally posted by ctstalin:
      great for hiding seafood in your family com Laughing

      Especially prawns..

  • [DVD]'s Avatar
    115 posts since Nov '07
  • Moderator
    LatecomerX's Avatar
    2,331 posts since May '07
  • [DVD]'s Avatar
    115 posts since Nov '07
  • ★.
    ^tamago^'s Avatar
    51,105 posts since Sep '03
  • Moderator
    ndmmxiaomayi's Avatar
    53,307 posts since Aug '05
  • Moderator
    LatecomerX's Avatar
    2,331 posts since May '07
    • Originally posted by [DVD]:
      Nothing better to do that googling it huh?

      Do note there are many variations to this coding for bat files.

      Nah, I'm not that free. Just that my intuition told me it was copied from somewhere and it happened to be a spot-on. So which variation did you copy? I'm guessing it's this one since the capitalization and the variable names are exactly the same. Am I right on this as well?

      And please, as a kind advice, quote your source if you're copying someone else's work in the future.

  • [DVD]'s Avatar
    115 posts since Nov '07
    • Originally posted by LatecomerX:
      Nah, I'm not that free. Just that my intuition told me it was copied from somewhere and it happened to be a spot-on. So which variation did you copy? I'm guessing it's this one since the capitalization and the variable names are exactly the same. Am I right on this as well?

      And please, as a kind advice, quote your source if you're copying someone else's work in the future.

      Erm, you're so free to look through google links and the variations huh?
      If you want the sense of pride/ego so badly, you can have it Laughing

      Edited by [DVD] 22 Dec `07, 2:47AM
  • maurizio13's Avatar
    12,343 posts since Sep '06
    • Hehehe...........

      Nothing more than renaming the Locker folder into another folder name and setting hidden attributes and system attributes.

      So, if anybody uses notepad to read your batch file, they will know your password huh?

      Laughing

  • Moderator
    LatecomerX's Avatar
    2,331 posts since May '07
    • Originally posted by [DVD]:
      Erm, you're so free to look through google links and the variations huh?
      If you want the sense of pride/ego so badly, you can have it Laughing

      Oh no, you would be shocked at how fast I can traverse through Google results after using it for all these years. It took me much less than 5 minutes to discover that you're not the first one to post the exact same thing.

      And of course, thank you. I need that sense of pride, definitely. I'm sure someone like you who shamelessly copy a person's work and leave no credit for him/her wouldn't need it anyway.

      I see that both of us will be flaming each other to no end if we continue this way. If you still wish to play this childish game, please go ahead, but I will not be joining you anymore.

      Edited by LatecomerX 22 Dec `07, 6:16AM
Please Login or Signup to reply.