How to Create Password Protected Folder without any Software
People are always requesting to use our computer, at that time we are always little bit scared about our personal data. Here I suggest you to protect your data with password protected folder. To create this password protected folder we don’t need any special software or any complex technique.
We just need to create one batch file from notepad with special code which includes folder name and its password. So let’s see how to create password protected folder.
- Copy below code into notepad and save it as “anyname” with .bat extension, for example secret.bat
cls
@ECHO OFF
title Folder Personal
if EXIST “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” goto UNLOCK
if NOT EXIST Personal 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 Personal “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%==pwd123 goto FAIL
attrib -h -s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
ren “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” Personal
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Personal
echo Personal created successfully
goto End
:End
In above code we create folder “Personal” with password “pwd123” as shown in red color. You can give any name and password by editing above file.
- When you run this bat file, it will create “Personal” folder automatically in the same location of bat file. Now you can put any data in this folder.
- Now run this bat file again for locking the folder and the default icon of folder is change to control panel icon.
- Now place this bat file to any secure location to keep your password safe.
- When you want to unlock this “Personal” folder, just run this bat file from same location as folder and it will ask for password which stored in bat file. After entering the correct password your folder is unlocked.
I think is very useful to protect our personal data. What you think?
Tags: Lock Folder, Password Protected Folder









Leave your response!