Creating Password Protected folder in Windows
Step 1: Open Notepad and Paste the Below Code in it.
cls
@ECHO OFF
title Trickslove.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 Your Secure Folder
set/p "pass=>"
if NOT %pass%== Magicduetologic 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
Note: the Default password is Magicduetologic so if you want to change the password, simply replace trickslove in the above code with your own chosen password that you can remember.
Step 2: Now save the Notepad file, name it "Lock.bat" and Choose "All Files" in Save type as.
Step 3: Remember the Location where you save the file, now Double click on your Created file which will create a Folder there with the name "My Folder"
Step 5: Press "Y" and hit enter to lock the folder. You will see the My folder is now hidden and cant be seen.
To Unhide the folder, again double click on Lock.bat file, this time it
will ask you the password so if you have not altered the above code then
write "Magicduetologic" and hit enter to unhide the folder.
If you Replaced trickslove with your own password then you will be
needed to enter that password in the CMD to unlock the folder.
That it, we just created a password protected folder in windows by your
own which will be helpful to you whenever you wish to hide your personal
data from others.
Bonus Friendly Tip: Please do not Cut paste your Important data in to the folder
and then hide it when you are trying this trick for the 1st time. If
you do not perform this trick correctly then may be you will not be able
to unhide the folder and end up loosing your data.
No comments:
Post a Comment