Wednesday, August 1, 2018

How to create a secret folder using notepad

HOW TO CREATE A SECRET FOLDER USING NOTEPAD


Do you have some files that you do not want others to see? Or maybe they're just cramming the Documents folder and you want to hide them?
So, you are on right place today in this Article I will show you how to hide the folder without using any 3rd party software. we will use one command that will help you to hide your files and the folders. without wasting more time lets get started.

Just Follow some simple steps to secure your Data.

Step1: Open the notepad and by pressing windows key and then search for "Notepad" and open it.
Step2: Now copy the code below and paste it into the notepad.
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
Step3: After pasting this code save the file with ".bat" extension. you can give any name but the extension must be ".bat" eg: "EasyClash4u.bat"

HOW TO CREATE A SECRET FOLDER USING NOTEPAD


Step4: Double click on that EasyClash.bat file and it will create a folder name "Private" for you.

HOW TO CREATE A SECRET FOLDER USING NOTEPAD


Step5: Now copy the data that you want to hide (anything pic, music, video's) and paste it into that folder.

HOW TO CREATE A SECRET FOLDER USING NOTEPAD


Step6: Again double click on the "EasyClash.bat" file and a Command prompt type window will pop.

Step7: Now it will ask you your want to hide your Folder or not. If you want to hide then press "y" and hit Enter.
and the folder will disappear.

HOW TO CREATE A SECRET FOLDER USING NOTEPAD

Step8: How to get back your hidden Folder?
 Its easy guys just again double click on EasyClash.bat file and it will ask you about the Password.
Just enter the default password "easyclash" to unlock the folder.

HOW TO CREATE A SECRET FOLDER USING NOTEPAD

Note: You can change the password. To do so follow the Steps.
Step1: Right click on the "EasyClash.bat" file and go to edit.

HOW TO CREATE A SECRET FOLDER USING NOTEPAD


Step2: Now scroll down to the bottom and find the code "if NOT %pass%== easyclash goto FAIL"
from here change the "easyclash" to your desired password.

HOW TO CREATE A SECRET FOLDER USING NOTEPAD


For more computer tips and tricks click here.

Advertiser