Skip to main content

How to lock a folder without any software-using Notepad.

Hi guys in this tutorial i am gonna show you How to Lock a folder without any software using notepad.As we know that,day-by-day lots of hackers are trying to steal the confidential data that resides on one system.As a result many of us are trying to protect there confidential data to be hidden by using various types of Folder locks.
How to lock folder without any softwrae.
But as these folders locks are not available for free,they get expire after a period of time.In order to get rid of it in this article i am gonna show you how to create a folder which is password protected.This works in all windows(i.e XP,vista,7,8).To do this Follow the steps that are given below.

Steps:

1.In order to do this,Open notepad( you can do this by pressing windows+R and type in it notepad).
2.Now in that copy the code which is given below.

CODE:

cls
:End
@ECHO OFF
title Folder Locker

cls
:END
@ECHO OFF
title worldtech360 Folder lock /*replace with your desired title */
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
goto End
:UNLOCK
echo Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%==type your password here 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
                                                      Download


3.Now in the above code replace 'type your password here' with your desired password
4.Now save this file by using an extension (.bat) for example:FILENAME.bat as shown below.
save the file name with .bat extension
5.Now you will see a batch file on the desktop like this.
Batch file ICON.
6.Double click on the batch file Which you have created,now a window will pop up(Command prompt).
Double on the created batch file to open the CMD.
7.Now enter the password which you have used in the source code and press Enter.In this i have used worldtech360.
Enter the password you used in the batch file program.
8. A folder will appear on the desktop as shown below.
Appearance of invincible folder.
9.Now drag the files into the folder and again press on the batch file.
10.Now a window will pop,in that type 'y' and  you will see that the folder which appeared on the desktop will disappear.
Press on the batch file one more time and CMD window will open.In that enter Y and hit enter.
12.If you want to open the folder,simply click on the batch file again.
13.But by doing this there is a risk of knowing the password by right clicking on the batch file and press edit option as show below.
One can know the password by right clicking on the batch file and then on EDIT.
14.In order to avoid this,we are going to convert this .bat file into .exe file by using simple softwares called "Bat-to-exe converter".
15.Open the file which you have download and press on the application and you will see the screen like this.
Bat to exe converter.
16.Now select the batch file path as shown below.
Browse to the batch file which you have created in the Bat to exe convertor
17.Now you will see a exe file.
Converted batch file that is in exe format

VIDEO TUTORIAL:


That's it friends now you can hide your confidential data without any loss.If you have any queries feel free to ask us through comments.

Comments

Popular posts from this blog

How to make an Installation file(setup file) using Iexpress.

Hi guys welcome to worldtech360. In this tutorial or article I  am going to show you how to create an installation file(setup file) for the .EXE file which you have created using an inbuilt option in windows 7 named ‘ iexpress ’. So let’s see how to do this. Note: You can also create an installation file for .bat file files or .VBS files or any other files which are executable. Steps: 1. Choose an .EXE file or any other file for which you want to create a setup file or installation file. In this I am going to use .VBS file 2. Open Run and type “ iexpress ” or “ iexpress.exe ” and hit enter. 3. After hitting enter, iexpress wizard window will popup. On the screen you will see two options i.e. “ create new self-extracting directive file ” and the other is “ open existing self-extracting directive file ”. I recommend you to choose the first option as you are going to create a self-extracting file and click next. 4. In the next window select “ Extract files on...

How to install Backtrack 5 R3 on Oracle VM virtual box

Hi guys in this tutorial i am gonna show you how to install Backtrack 5r3 using virtual box.This tutorial is only for Educational purpose,Don't try to use it in a wrong way.Before going into the discussion let see what exactly backtrack means?Backtrack is an operating system which is developed especially for hackers and other security professionals.Mostly if we want to hack a wifi password i.e WEP or WPA or if we want to do phishing we need certain tools to do it.But Backtrack reduces this burden as it contains a bag full of hacking software's like gerex,Social engineering tools and many more.So lets install backtrack 5 r3 using virtual box. Steps:  Requirements: Backtrack( CLICK HERE ). Virtualbox( CLICK HERE ). 1.Install the Virtual box and open it. 2.Now we see a screen like below. 3.Click on New button and a window will up asking to type the name,Type and version.Select the type as 'linux' and version as 'oracle' as shown below and hit next...

How to Make Invincible folders using Charmap.

Every one of us have our confidential data residing on our desk and we try to be protect it by using various Folder locks (Paid and free version).But have you ever tried to protect it without using any software’s, if not in this tutorial i am gonna show you how to make a folder invincible and it works perfectly. This post will be useful for those who are not in a stage to buy the folder lock software’s. So let’s see how to do this. You can also check : How to lock a folder using notepad   Video Tutorial: Steps: 1. Open Run and type " charmap "(Run with Administrator rights). 2. Browse to the blank character in it as shown below and click on select and Copy the selected character. 3. Now select the folder which you want to make invincible and click F2 to rename it. Now paste the character which you have selected in the CHARMAP and press enter. Now you will see a folder without a name. 4. Right click on the nameless folder and click on properties and br...