How to Make Password Protected Folder Without Using Any Third Party Tool
Hey hi to all .... hope you all are good....
In this post i am sharing a simple nice trick that enables us to create a password protected folder without using any software. Just follow the simple steps .....
Step-1:
Open Notepad ( Win+R>Notepad>Hit enter )
Step-2:
Copy and paste the following code:
cls
@ECHO OFF
title h4ck3ramit.blogspot.in
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST YourSecretFolder goto MDMyFolder
:CONFIRM
echo lock this folder? (Yes/No)
set/p "cho=>"
if %cho%==YES goto LOCK
if %cho%==yes goto LOCK
if %cho%==Yes goto LOCK
if %cho%==no goto END
if %cho%==No goto END
if %cho%==NO goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren YourSecretFolder "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%== YourPassword goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" YourSecretFolder
echo Folder Unlocked successfully H4CK3R 4M1Tgoto End
:FAIL
echo Invalid password
goto end
:MDMyFolder
md YourSecretFolder
echo YourSecretFolder created successfully
goto End
:End
Step-3:
Save the file with .bat extension eg: Anything.bat
Step-4:
When you double click on the file you just made, a folder with the name "YourSecretFolder" will be created.
Step-5:
Put your secret data in the folder and again double click on the file Anything.bat , the following screen will show. Now type "yes" without quote and hit enter. This will make YourSecretFolder hidden.
Step-5:
To show YourSecretFolder , double click on the file Anything.bat give the password (YourPassword) and hit enter.
Done.....
Note: You can change password by replacing YourPassword with the password you want to set.
In this post i am sharing a simple nice trick that enables us to create a password protected folder without using any software. Just follow the simple steps .....
Step-1:
Open Notepad ( Win+R>Notepad>Hit enter )
Step-2:
Copy and paste the following code:
cls
@ECHO OFF
title h4ck3ramit.blogspot.in
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST YourSecretFolder goto MDMyFolder
:CONFIRM
echo lock this folder? (Yes/No)
set/p "cho=>"
if %cho%==YES goto LOCK
if %cho%==yes goto LOCK
if %cho%==Yes goto LOCK
if %cho%==no goto END
if %cho%==No goto END
if %cho%==NO goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren YourSecretFolder "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%== YourPassword goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" YourSecretFolder
echo Folder Unlocked successfully H4CK3R 4M1Tgoto End
:FAIL
echo Invalid password
goto end
:MDMyFolder
md YourSecretFolder
echo YourSecretFolder created successfully
goto End
:End
Step-3:
Save the file with .bat extension eg: Anything.bat
Step-4:
When you double click on the file you just made, a folder with the name "YourSecretFolder" will be created.
Step-5:
Put your secret data in the folder and again double click on the file Anything.bat , the following screen will show. Now type "yes" without quote and hit enter. This will make YourSecretFolder hidden.
Step-5:
To show YourSecretFolder , double click on the file Anything.bat give the password (YourPassword) and hit enter.
Done.....
Note: You can change password by replacing YourPassword with the password you want to set.
Comments
Post a Comment