Here is the guide to make password protected folder without any software.
Create any normal folder where your want to make password protected folder.
Open notepad file and paste the following code.
cls
@ECHO OFF
title www.SoTheaVorn.blogspot.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 Folder
set/p "pass=>"
if NOT %pass%== www.SoTheaVorn.blogspot.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
Replace “www.SoTheaVorn.bloggspot.com” with your desire password name and save it as any name.bat .
Open this file and you will see a new folder created with “My Folder” name.
Now again open the bat file and it file ask you to lock the folder or not.Write Y and press enter.
This will hide the folder and if you want to open the folder.Click on the bat file again and enter your password.
What to do if you forgot your password
If you forgot your password you will lose important data.But don’t worry recovering password its very easy.Just right on the bat and click on edit and there you can find your password.





