Monday, January 23, 2017

Creating your Personal Private Folder with Password

If you wanted to create your own private folder with a personalized folder,
then you came to the right place.

Follow these simple procedures to get your own personalized private folder.

Open notepad

Copy paste the command you see below.

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
pause
goto End
:UNLOCK
echo Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%==JGinformations 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
pause
goto End
:End



Save it as config.bat 
or any other name that you want,
as long as the extension of the file would be .bat

When finished, double click the said command file. ( ex. config.bat )
 A folder named: Locker would then appear.

In that folder, Copy Paste all your important files ( ex. pictures, videos, documents, etc. )

When finished pasting the files, close the locker window.
Then, Double Click the Command file. ( ex. config.bat )

In the command prompt, It will ask you to hide the Locker folder.
    
Enter Y to hide the folder,

Locker folder will now become invisible,

The default password would be:

JGinformations

To Configure your own password to that command line.

Right click on the Command file ( ex. config.bat ) and open it with Notepad.

Find these line and edit it. ( don't edit anything else )

if NOT %pass%==JGinformations goto FAIL

Change JGinformations to any password of your choice.

Once finished, Save your work by pressing CTRL + S on the keyboard.

Close the notepad.

Now, everytime you double click ( open ) that Command file ( ex. config.bat ), 
It'll ask for your password.

Simply input the password ( Case sensitive ) and hit Enter to open your private folder.

No comments:

Post a Comment