How To Hide Folders By Passwords With And Without Using Software
In general we used to store our information like mail ids and passwords of online banking accounts of that respective bank or ATM pin number and more because we cannot memorize all the security pins. To make this type of information hide and secure we need a single password to protect all these information. For this just put a password to the folder which contains all the information which must be secure. Today i am going to show you how to protect folder with Software and with out Software.
With a Software
For locking folders with password there is software named Wise Folder Hider. This is a free and secure software. At first we need to click on the download button of software. After downloading RUN the software. It takes some time to run then you can see a pop-up window. Click on the Accept button. After this you can see a default pop-up window in this by default it will be express which is nothing but recommended by the software but you need to change it to Custom mode by clicking on the radio button which is just side to it. Then click Next button. After this search for .exe file you can see that icon on the desktop. Click on that Next button until the download starts. Note that no Licence / Serial key required. Now you can see an icon of Wise Folder Hider on your desktop. Now double click on that icon. Now you can see a login window on your desktop screen. There you can choose your own password.
Amazing Smart Phone Screen Locking Apps…
On the top of the window you can see three options like Hide File, Hide folder, Hide USB drives. Depending on your choice you can select the folder. By clicking on them you can select file or folder where ever on your computer and USB drives as well just select on the file or folder which need to be hide or protected with password. To Hide the file or folder after selecting them there you can see a button named Open just click the side downward directed arrow with some sub options like Set Password and Hide choose what ever you liked. That it all the information you wanted to store will be stored with your password.
Without a Software
We need to code to lock the folder. First create a folder. Right click on desktop click on new and select text document. Then enter the bellow code.
cls
@ECHO OFF
title Folder Private
if EXIST "HTG Locker" 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%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Private "HTG Locker"
attrib +h +s "HTG Locker"
echo Folder locked
goto End
:UNLOCK
echo Enter password to unlock folder
set/p "pass=>"
if NOT %pass%== YOUR_OWN_PASSWORD goto FAIL
attrib -h -s "HTG Locker"
ren "HTG Locker" Private
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Private
echo Private created successfully
goto End
:End
Note : Replace YOUR_OWN_PASSWORD with your own password in the code.
Save the file in the newly created folder with .bat extension. Then delete that text document. After running the code you will be asked that confirm that you really need to give password or not type Y. That’s all your folder is locked. If you want to see the folder again right click on it. Go to folder options there click on the view there you can see Hide protected OS. Activate it and click on edit.