How to Lock A Folder Using Notepad


Just Follow the below  Instruction

  •  Start--> Run --> Notepad and hit enter. 
  • Now Copy below code and paste it in notepa
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%== TYPE  YOUR PASSWORD HERE  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


 Now Save Notepad as Nepal.bat. (Means give folder name and after that type .bat Eg. If you want to name your folder nepal you have to type Nepal.bat

Type password on above highlighted  TYPE  YOUR PASSWORD HERE.
  • Save it on Desk top.
  •  Now visit to your desktop, you will see a ICON as shown below








  • Now double click on Nepal.bat file then a new folder named as Private is created.
  •  Save your files in Private folder then again double click on the Folder Nepal.bat, a prompt is displayed.
  • To lock the folder(Locker) press "y " in the prompt, to unlock press "n"  in the prompt.