Showing posts with label set password on folder 2021. Show all posts
Showing posts with label set password on folder 2021. Show all posts
How to Lock Folder with Password in Windows 10 without Software

How to Lock Folder with Password in Windows 10 without Software

 How to Lock Folders with Password in Windows 10 without Software


In this article of "How to Lock Folder with Password in Windows 10 without Software", I will share simple and quick way of making your personal or private folder password protected.




For that you need to follow the below mention steps. They are...

> Step 1 : First you need to create a "New Text Document" & then "Paste" the Code.

> Code Link : Get Access To Code

> Step 2 : Type "Your Password" in the place of "YOUR PASSWORD".

> For demo I will type my password like "12345678" etc.

> After that "Save As" that text file with ".bat" extension. Like "FileNameETC.bat".

> Once the ".bat" file is created successfully, Double-click on it to create a "Private Folder".

> Step 3 : Now this "Private" folder work's as your Personal Folder with Password.

> Put any files, folders, images, videos and etc in that Private Folder.

> Once you done, Again double-click on that ".bat" file & then press "Y" key to lock
    that Private Folder with Password.

> As you see "Private" Folder disappear.

> Now if you want to "Un-Lock" the Private Folder then double-click on ".bat" file and this time it will ask for "Password".

> Now you will not access that folder without password.

> Type your "Password" and then press "Enter" key to open that Private Folder.

> Once you done with your change's in the Private Folder, Again double-click  on that ".bat" file & type "Y". This will again "Lock" the "Private Folder".

> That's it... Through this simple code you can easily lock your private folder with password in windows 10 for FREE and without using any software.

> Watch Video Tutorial : Click Here





 
How to Lock Folder with Password in Windows 10 without Software Code

How to Lock Folder with Password in Windows 10 without Software Code

How to Lock Folders with Password in Windows 10 without Software Code 

How to Lock Folder with Password in Windows 10 without Software Code


Copy below mention code :


     
@ECHO OFF
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Private goto MDPrivate
: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 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 Your Secure Folder
set/p "pass=>"
if NOT %pass%== YOUR PASSWORD 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
:MDPrivate
md Private
echo Private created successfully
goto End
:End

> Watch Video Tutorial on "How to Lock Folder with Password": CLICK HERE