Friday 1 April 2016

How to Create a Secret Folder Using Notepad


              How to Create a Secret Folder Using Notepad

STEP 1:
Open Notepad (Press Windows+R, Type notepad and press 'Enter' key)

STEP 2:
Copy & Paste the code given below carefully:
"
Quote:
Quote: cls
@ECHO OFF
title Folder Private
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Private goto MDLOCKER
:CONFIRM
echo Are you sure you 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 Private "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%== password goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Private
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Private
echo Private created successfully
goto End
:End
"
STEP 3:
Save the file with any name followed by extension ".bat". (For example: private.bat)

STEP 4:
Double-click the 'private.bat' file icon. It'll create a folder for you under the name 'Private'.

STEP 5:
Open the folder, place whatever data (files, folders etc. you want to keep out of reach of others and close the folder.

STEP 6:
Again, double-click 'private.bat' file icon.It'll open window.

STEP 7:
Type 'Y' and press 'Enter' key. It'll hide your the folder immediately.
Now, you or anyone else won't be able to see that folder anywhere in your computer.

STEP 8:
To see the folder again, double-click 'private.bat' icon again. It'll open following window shown in the image. It'll ask you type password to open the folder.

STEP 9:
Type the password. Default password set is "rehanjamilplus". you can change this password in the line no 22 in the pasted code. Then press 'Enter' key.

STEP 10:
Open the folder, you can see your data there.


      if you face any problem then leave your message in comments given below or CONTACT US


Related Posts

0 comments: