Wednesday, 31 August 2011

Create your Own Folder Locker secure and Reliable without any Software


Now a day we have lots of friends and relations, In this relationship we doesn’t say no to any one if he/she ask for our PC even it contained some confidential data. In situation like this we needs some application that make our data secure from anonymous user but we can’t use any non -reliable application without its proper information. Sometime it happens when we used untreatable application it make our data lost. But dear friends today I bring a Secure and Reliable trick that make you data more confidential.



How it Work?
Its working is very simple and easy to implement, firstly it make its own folder name “Locker” and rename it with own confidential name and then hide it. Whenever you unlock it , It will give you visible folder name “Locker” where again you access you files.
How to Implement?

  • 1)   Goto StartàRunàNotepad.
  • 2)     Copy these Codes and Paste it.
  • cls
    
    @ECHO OFF
    
    title Folder xLocker
    
    IF EXIST LOCKER goto LOCKPWD
    IF EXIST xPanel goto UNLOCKPWD
    IF NOT EXIST LOCKER goto MDLOCKER
    
    :LOCKPWD
    echo Your Password="123abc"
    set/p "po="
    goto LOCK
    
    :LOCK
    ren Locker xPanel
    attrib +h +s xPanel
    echo Folder locked
    goto End
    
    :UNLOCKPWD
    echo Enter Password to Unlock
    set/p "pass="
    IF "%pass%"=="123abc" goto UNLOCK
    IF NOT %pass%=="123abc" goto FAIL
    goto END
    
    :UNLOCK
    attrib -h -s xPanel
    ren xPanel Locker 
    echo Folder Unlocked
    goto End
    
    :MDLOCKER
    md Locker
    echo Locker created successfully
    goto End
    
    :FAIL
    echo Invailed Password
    goto UNLOCKPWD
    
    :End  
    
  • 3)     Save the File with name “filename.bat”.
  • 4)     Double click on file (a folder name Locker will created at same place).
  • 5)     Put your files in Locker.
  • 6)     Double Click on “filename.bat” again (folder name Locker get hidden)
  • 7)     To unlock, again double Click on “filename.bat” (now Locker folder Unhide).

If you have any query please leave comment.

Related Posts:



0 comments:

Post a Comment