How to Hide Your Personal Data Using Notepad


Date security is a very important think that almost of all faces. Protect your personal files viewing by other of hide your personal data from yore elder or any other. Around all of as have personal data bot not have a personal computer to store it. so we need a protection system for files of folder.
There are so many software for protecting or hiding files or folder but when we install this kind of protecting system other know that we trying to hide some data. So that is a problem. If there is procedure to protect of hide files or folder without any software then its solve our problem.
By observing all this kind of problem I found protecting system without any software only with the help of notepad. Through this tricks you can hide any folder with out a software and your data is secure and no one can doubt that you will trying to hide a data. To use this tricks you have to follow the following steps:

Steps required: 

1. Open Notepad. Just go Start > All programs > Accessories > Notepad.
2. Copy the bellow text.

cls
@ECHO OFF
title Sciencevilla.com
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST MyFolder goto MDMyFolder
:CONFIRM
echo Are you sure to lock this 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 MyFolder "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 Your Secure Folder
set/p "pass=>"
if NOT %pass%== sciencevilla.com goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" MyFolder
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDMyFolder
md MyFolder
echo MyFolder created successfully
goto End
:End


3. Paste inside the Notepad.
4. Press File > Save as.
5. Select All types and give a name with file name extension '*.bat'. For example "Lock.bat".
6. Here your password is sciencevilla.com.
7. If you want to change the password just write your password replacing the blue colored text in the above box.