| Hide folder in computer with password |
|
|
|
| Written by Ravi Maggon |
| Monday, 15 February 2010 17:26 |
|
Hey Friends,
We all serach over internet to find a software or a code so that we may hide our private data in a folder that becomes hidden and even after that it doesn't get searched and to unlock u need to have the password.
Below is the code followed by instructions:
cls
@ECHO OFF title Folder Locker mode con cols=66 lines=20 COLOR 70 if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK if NOT EXIST Locker goto MDLOCKER :CONFIRM echo. echo. echo. echo. echo Are you sure u want to Lock the folder(Y/N) echo. echo. 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. echo. echo. echo Enter password to Unlock folder echo. echo. echo. set/p "pass= >" if NOT %pass%==Data@1234 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 Instructions:
1.Copy the code and past it in a notepad file with any name and .bat extension
2.Run .bat file by clicking on it
3.A locker folder is created
4.Put the content you want to hide in that folder and run that .bat file again.
5.Folder is now hidden
6.To unhide folder again run .bat file and enter the password
7.Default password is Data@1234 which can be changed (Serach it yourself)
|