There is much software that will provide you this feature but there is a problem with that. if by any means that software is un-installed you might lose your personal data because of the login credentials will be deleted. In this tutorial, you will learn to create your own method to lock a folder with password protection.
How To Lock a Folder With Password
Step1
Create a Folder name ‘PRIVATE’ inside of the folder you want to save your content.
Step2
Now open ‘NotePad’ or any other ‘Text Editor’. Remember to create that notepad file outside that folder.
Step3
Copy the below code and paste it in that Note Pad file by typing your password in “CHANGE_YOUR_PASSWORD”.
@ECHO OFF
title Folder Locker
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%==mypassword 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
Step4
Now save this file as “LOCKER.BAT”.
Step5
Once you did that delete your Notepad file because there will be a BAT file to use.
Step6
Now run that LOCKER.BAT file and you will see a CMD window. In there Press ‘Y’ to lock the folder. Every-time when you need to see your private data you have to run that file and enter the password to access your private data.
Conclusion
You can easily lock a folder in a few clicks. Complete folder protection without any software. Let us know if you faced any issues during folder locking. You can easily save your personal documents and files inside that folder and lock them.
Comments are closed.