How to password protect a file or folder?

How to password protect a file or folder?

75
0
SHARE

How to password protect a file or folder?

When you get a new Windows 10 PC, or any version of Windows for that matter, there are a couple of things that you must do before you actually start using your PC. Of course, downloading Chrome is one of the things many us do, but there are other equally important things that you should pay attention to, especially if your PCs have sensitive information such as personal photos, videos, bank information, or anything that you don’t want anyone to get access to.

If you don’t follow the right steps, your sensitive information may get into the hands of the people that might cause you harm. Clearly, you have the option not to share your PC with others, and that way you can protect your information, but the good news is you don’t have to be that rude in order to be able to protect your files or folders in Windows 10. There are ways, following which you’ll be able to password protect whatever you want to protect and at the same time will be able to share your PC with others without worrying too much about your personal information.

If you’re someone that’s looking for ways to protect files or folders on Windows 10, you can do that by following a few simple and easy steps and the best part is you don’t have to be an expert to perform those steps. There are multiple ways to password protect your sensitive information. The steps have been discussed below.

Here is how to password protect your files or folders in Windows 10

Method 1:

You can password protect your folder of files in Windows 10 just by creating a simple batch file(a.k.a. BAT file). Again, you don’t have to be an expert to do that. But before we proceed, here is a little information about a batch file in case you’re not familiar with it: in simple words, a batch file is just a simple text file that can automate everyday tasks, shorten the required time to do something.

Now that you’ve some idea about batch files, we can now proceed to the steps that you need to follow in order to be able to hide your files or folders.

  1. Create a file, and name the file whatever you want
  2. Double click on the folder to open it, and then within the folder, do a right-click on the empty space and select New > Text Document
    <img class="i-amphtml-intrinsic-sizer" style="width: 321.091px; height: auto; margin-bottom: 20px; max-width: 100%; display: block !important;" role="presentation" src="data:;base64,” alt=”” aria-hidden=”true” />
  3. Name the document whatever you want and then open it in Notepad
  4. Paste the below code
    cls
    @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%==your_password 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
  5. Locate if NOT “%pass%==your_password” goto FAIL in the code that you just pasted. And then change your_password to the password of your choice.
    <img class="i-amphtml-intrinsic-sizer" style="width: 321.091px; height: auto; margin-bottom: 20px; max-width: 100%; display: block !important;" role="presentation" src="data:;base64,” alt=”” aria-hidden=”true” />
  6. On the top right corner of the Notepad window, you can see the File option, click on it and then click on Save As.
  7. You’ll now be asked to name the file. Choose a name a ensure that you add a .bat extension to your file. Also, make sure that the encoding type is ANSI. Click on Save.
    <img class="i-amphtml-intrinsic-sizer" style="width: 321.091px; height: auto; margin-bottom: 20px; max-width: 100%; display: block !important;" role="presentation" src="data:;base64,” alt=”” aria-hidden=”true” />
  8. Double click on the BAT file that you just created. You should now see a folder with the name same as the BAT file.
  9. Place all your files and folders that you think are sensitive in the folder that you just created by double-clicking on the BAT file.
  10. Now click on the BAT file again
  11. A command prompt will open asking if you want to lock your folder. Press Y and press Enter.
    <img class="i-amphtml-intrinsic-sizer" style="width: 321.091px; height: auto; margin-bottom: 20px; max-width: 100%; display: block !important;" role="presentation" src="data:;base64,” alt=”” aria-hidden=”true” />
  12. You’ll no longer see the folder. If you want your folder to appear once again, you’ll need to double click on the BAT file and then it’ll open the command prompt asking you to enter the password you chose. If you enter the password correctly, you should see the file once again.

Note: The above password protect steps are applicable in older versions of Windows. So, if you’re still running Windows 7 or older, the above steps will work for you too.

Method 2:

If the above steps are too much for you, we have a comparatively easier solution for you. But before I tell you the steps, here is what you need to know: this method doesn’t require you to set passwords to protect your folders of files, meaning it’s comparatively less secure than what we discussed above. Also, anyone that is familiar with this method will be able to see your hidden folders. If this is okay with you, the below steps will work just fine for you.

  1. Do a right-click on the folder you want to hide, and then click on Properties
    <img class="i-amphtml-intrinsic-sizer" style="width: 321.091px; height: auto; margin-bottom: 20px; max-width: 100%; display: block !important;" role="presentation" src="data:;base64,” alt=”” aria-hidden=”true” />password protect
  2. In the General tab, you will see an option called Attributes, under which you have two options to choose, the default is Read-only. But if you want to hide the folder, you’ll need to select Hidden, then select Apply and click OK. You should not see the folder now. But in case you’re still seeing, you need to do a little more.
    <img class="i-amphtml-intrinsic-sizer" style="width: 321.091px; height: auto; margin-bottom: 20px; max-width: 100%; display: block !important;" role="presentation" src="data:;base64,” alt=”” aria-hidden=”true” />
  3. At the top of the file explorer, you can see a tab called View. Click on it. And then click on Options and then click on Change folder and search options.
    <img class="i-amphtml-intrinsic-sizer" style="width: 321.091px; height: auto; margin-bottom: 20px; max-width: 100%; display: block !important;" role="presentation" src="data:;base64,” alt=”” aria-hidden=”true” />
  4. A new pop-up window will appear. In the new window look for the view tab, and then click on it. We’ll see a setting called Hidden files and folders, under which you’ll see two options — you’ll need to select the first option that says Don’t show hidden files, folders or drives. Click on Apply and then OK.

That’s pretty much all that you need to do in order to hide a folder or a file. And as was the case with the first method, method number 2 is exactly the same even if you’re using an older version of Windows.

Method 3:

When I said there are multiple ways to securing your sensitive information I really meant it. Apart from the methods that were discussed above, enabling the Windows BitLocker feature is another easy way to secure your personal information. However, there are a few caveats that you should know before you get too excited.

The Windows BitLocker feature is limited to Windows Pro and Enterprise versions only, so if you’re running Home version, you’re out of luck! Another caveat is that the feature won’t help you if you’re looking to protect a particular file or folder. Instead, what the BitLocker feature does is that it helps you protect the entire drive. And if that’s exactly what you’re trying to do, you should follow the below steps.

  1. Choose the drive that you want the BitLocker to encrypt
  2. Do a right-click on the drive
  3. Click on Turn on BitLocker
  4. Now Windows will ask you how you would like to unlock the drive. You have two options — by password or by smartcard
  5. You’ll now need to enter a password, and then once you click on Next, it’ll ask you to choose where you want to save the recovery key in case you forget your password
  6. Now Windows let you choose whether you want to encrypt the entire drive or just the used space. Select the option that is best suited for you, and then click on Next.
  7. Wait for the process to complete
  8. Restart your PC

These are all the password protect methods that you can follow in order to be able to make your personal information safe and secure. But if you’re looking for even more robust protection, then you might need to look for third-party software that’s designed to make your files or folders secure.