CrazyEngineers
  • Cool batch file to lock and disguise a folder.

    lovekiller

    Member

    Updated: Oct 26, 2024
    Views: 994
    Cool batch file to lock and disguise a folder.
    Move any files you want to be hidden in your locker, double click the bat again and you will be asked to lock when the folder is locked it will dissapear
    to unlock the folder double click the bat file enter any pass. or make up one of your own and input it into the
    code:

    @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
    0
    Replies
Howdy guest!
Dear guest, you must be logged-in to participate on CrazyEngineers. We would love to have you as a member of our community. Consider creating an account or login.
Replies
  • lovekiller

    MemberMay 20, 2010

    plz give comments
    Are you sure? This action cannot be undone.
    Cancel
  • mayank1055

    MemberMay 20, 2010

    Thanks... 😁
    Are you sure? This action cannot be undone.
    Cancel
  • savior

    MemberMay 21, 2010

    Thanks... its really cool...
    Are you sure? This action cannot be undone.
    Cancel
Home Channels Search Login Register