Results 1 to 2 of 2

Thread: A Simple Code For Creating Folder Locker/Unlocker Software.

  1. #1
    Join Date
    Oct 2005
    Posts
    2,393

    star A Simple Code For Creating Folder Locker/Unlocker Software.

    Here is a simple code that i developed to lock and unlock any folder.
    copy the code below in notepad and save the file with any file name with the extension ".bat"

    Code:
    @ECHO OFF
    ECHO 1 - Lock File
    ECHO 2 - Unlock File
    ECHO 3 - Quit
    ECHO Enter Choice.
    SET /P variable=
    
    IF %variable%==3 exit
    
    IF %variable%==2 GOTO UNLOCK
    
    IF %variable%==1 GOTO LOCK
    
    :LOCK
    ECHO Enter Folder Name To Lock
    SET /P Variable1=
    REN %variable1% %variable1%.{21EC2020-3AEA-1069-A2DD-08002B30309D}
    exit
    
    
    :UNLOCK
    ECHO Enter Folder Name To UnLock
    SET /P Variable1=
    REN %variable1%.{21EC2020-3AEA-1069-A2DD-08002B30309D} %variable1%
    exit
    Note:
    • It is not at all secure.
    • The locked folder can be unlocked using the program or by simply renaming and removing the added code.
    • You can distribute the above code to any one, any number of times.
    • For more simple code goto Lock folder without any software

  2. #2
    Join Date
    Jan 2009
    Posts
    2

    Re: A Simple Code For Creating Folder Locker/Unlocker Software.

    wow it's really good. thanks man........

Similar Threads

  1. Replies: 7
    Last Post: 27-10-2012, 12:58 PM
  2. Need help for creating simple jsp web application
    By ogi.za.forum in forum Software Development
    Replies: 1
    Last Post: 18-08-2009, 08:26 AM
  3. A Simple File and Folder renaming batch code : RenameR
    By Rudra.J in forum Tips & Tweaks
    Replies: 2
    Last Post: 05-03-2009, 02:59 PM
  4. Simple 3-d software from illustrator
    By ProcalX in forum Customize Desktop
    Replies: 3
    Last Post: 10-02-2009, 10:27 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,714,127,337.65154 seconds with 17 queries