4 best ways to hide or protect a Windows folder, without installing additional software

There are many ways to protect sensitive folders and data, such as hiding them in hard-to-find places, storing them in removable storage devices and putting them in safes, and storing them in the cloud with strong passwords. But if you have to access them frequently, you will have to leave them on your computer, even in the most accessible places. In that case, a more effective way to protect folders is to hide them, set a password, or encrypt them.

In the article below, WebTech360 will guide you through 5 ways to protect folders on Windows:

1. Hide any folder using Windows built-in option

Windows has a built-in tool that allows you to hide folders that you want to hide. This is a low-security method and should not be used to protect important data. You can also use this tool to hide folders that you find annoying.

How to do as follows:

  1. Go to File Explorer and find the folder you want to hide.
  2. Right-click on the folder and select Properties (on Windows 11, select Show more options > Properties )
  3. Click on the "Hidden" box and press OK

4 best ways to hide or protect a Windows folder, without installing additional software

To view the files again, all you need to do is on the Folder Options window , uncheck the items Show hidden files, folders, and drives and Hide protected operating system files . Or you can click on the " Hidden items " box in the View menu of File Explorer.

4 best ways to hide or protect a Windows folder, without installing additional software

2. Turn a normal folder into a hidden system folder using Command Prompt

Command Prompt is a command-line interpreter application available in most Windows operating systems. It is used to execute entered commands. Most of these commands automate tasks through scripts and batch files, perform advanced administrative functions, and troubleshoot or resolve certain types of Windows issues.

Command Prompt's official name is Windows Command Processor, but it's sometimes referred to as the command shell, or even by its file name, cmd.exe.

Turning a regular folder into a hidden system folder using Command Prompt is a bit more difficult than the previous method, so of course the security will be higher. To do it successfully, you will have to manipulate a bit with the Command Prompt command line window.

How to do as follows:

  1. Press Win + R to open Run then type cmd and Enter to open Command Prompt
  2. Type the following command into Command Prompt:
    attrib +s +h “C:\Users\Quantrimang\Desktop\Bi Mat”
  3. Replace C:\Users\Quantrimang\Desktop\Bi Mat with the path to the folder you want to hide. For example: D:\TaiLieuTiengNhat
  4. After completing the command, press Enter and the folder will be hidden. Even if you unhide it in Folders Options, it cannot be found.
  5. To unhide, you need to run the above command again but replace the " + " with a " - "

4 best ways to hide or protect a Windows folder, without installing additional software

3. Encrypt files or folders without installing additional software

Encryption is an effective way to protect your files. Microsoft includes an encryption tool in Windows that makes it easy to protect your data.

How to do as follows:

  1. Right click on the file or folder to encrypt and select Properties
  2. Click the Advanced button
  3. Click on Encrypt Contents to Secure Data and then click OK
  4. Click Apply to finish
  5. If you encrypt a file, the system will prompt you to encrypt both the file and its parent directory.
  6. After encryption, the file or folder will turn green.

4 best ways to hide or protect a Windows folder, without installing additional software

The only downside to this method is that it ties the encryption to your user account. This means that other accounts on the same computer will not be able to open the files or folders you encrypted. However, if you share an account, this method will not work.

How to Backup Locked Folder Encryption Key in Windows 10

Follow these steps to manually back up keys for encrypted folders:

1.  Press Windows key + R to open the Run command dialog box , type certmgr.msc , and then select OK.

4 best ways to hide or protect a Windows folder, without installing additional software
certmgr.msc in the Windows Run box

2. In the left pane, go to Personal store > Certificates .

4 best ways to hide or protect a Windows folder, without installing additional software
Personal store > Certificates in Windows Certificate Manager

3. Select all certificates for Encrypting File System .

4 best ways to hide or protect a Windows folder, without installing additional software
Encrypting File System in Windows Certificate Manager

4. Right-click on the selected files, then go to All Tasks > Export .

4 best ways to hide or protect a Windows folder, without installing additional software
All Tasks > Export in Windows Certificate Manager

5. Start the Certificate Export Wizard by selecting Next on the first screen.

6. Keep the default values ​​selected, then click Next again.

4 best ways to hide or protect a Windows folder, without installing additional software
Certificate Export Wizard export file format

7. Check the box next to Password to enable passwords and fill in the text fields below. Select Next.

4 best ways to hide or protect a Windows folder, without installing additional software
Certificate Export Wizard security screen

8. Choose where to save the PFX file and name the file.

9. Select Next to review the information you have provided and select Finish to complete the export.

4 best ways to hide or protect a Windows folder, without installing additional software
Complete the Certificate Export Wizard review screen

10. Select OK on the export success prompt. If you need to use this certificate, simply open the certificate from wherever you saved it in step 9 and follow the on-screen prompts.

4. How to hide and access hidden folders using .BAT file

1. Before you begin, you must create a folder to store the folders that need to be protected. To do this, simply create a folder in the usual way and give it any name.

4 best ways to hide or protect a Windows folder, without installing additional software

2. Navigate to the folder you just created, open it and create a new Text Document by right-clicking on any empty space in the folder, selecting New => Text Document.

4 best ways to hide or protect a Windows folder, without installing additional software

3. Open the Text Document file you just created, copy and paste the code below into it:

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%==y goto LOCK
if %cho%==n goto END
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%== PASSWORD_GOES_HERE 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:

In the above code, replace PASSWORD_GOES_HERE with the password you want to set. Finally, in Save as type select All type , name the file locker.bat .

4 best ways to hide or protect a Windows folder, without installing additional software

4. Now you can delete the original text file.

4 best ways to hide or protect a Windows folder, without installing additional software

5. Next, double-click on the locker.bat file to open it. This will create a new folder named Private . This Private folder is where you can store all important files and folders....

4 best ways to hide or protect a Windows folder, without installing additional software

6. After moving the data that needs to be secured into the Private folder, double-click on the locker.bat file .

Immediately a command line dialog box will appear asking if you agree to hide this folder, just type “Y” and press ENTER.

4 best ways to hide or protect a Windows folder, without installing additional software

7. Once done the Private folder will disappear.

4 best ways to hide or protect a Windows folder, without installing additional software

8. If you want to access the Private folder, double-click on the locker.bat file and enter the password you set in the command line window and press ENTER.

4 best ways to hide or protect a Windows folder, without installing additional software

How to view files again

To view the files again, all you need to do is on the Folder Options window, uncheck the Show hidden files, folders, and drives and Hide protected operating system files .

4 best ways to hide or protect a Windows folder, without installing additional software

Then a warning window will appear on the screen as shown below:

4 best ways to hide or protect a Windows folder, without installing additional software

To open the Folder Options window as well as to hide or show files and folders on Windows 7, 8 and 10, please refer to the steps here .

If you accidentally forget your password

If you accidentally forget your password or if you want to change it, all you need to do is right-click on the locker.bat file and select Edit and proceed to change the password.

4 best ways to hide or protect a Windows folder, without installing additional software

The above method only helps protect your sensitive files from prying eyes. People who know this trick or have knowledge of computers can easily open the files you have hidden, then you need a real password setting tool for the folder. You can see the 3 software that WebTech360 has introduced such as: Wise Folder Hider , Folder Guard , Secure Folder

Some frequently asked questions

How to lock a folder in Windows 10 to prevent deletion?

One option is to right-click the folder and select Properties > Security > Advanced > Disable Inheritance > Convert inherited permissions into explicit permissions on this object . Then, select a user from the list, select Edit > Show advanced permissions > Type > Deny and check the box next to Delete.

How to hide a folder on PC and lock it yourself in Windows 10?

To hide files and folders in Windows 10, right-click the folder and select Properties > General > Hidden > Apply > OK . While you can prevent hidden files from showing up by adjusting your File Explorer view, other users can easily show hidden items by changing this setting. A third-party tool to add password protection and hide folders more effectively.

Tags: #System
Sign up and earn $1000 a day ⋙

Leave a Comment

12 Most Useful PowerShell Commands for Windows

12 Most Useful PowerShell Commands for Windows

Most IT admins use PowerShell for scripting and automation, but it's not just for IT pros—anyone who deals with messy folders needs these commands.

12 Best Custom PC Building Websites

12 Best Custom PC Building Websites

Building a custom PC is no easy task, especially for beginners. Luckily, there is plenty of help available on the Internet.

How to delete old Windows restore points to free up space

How to delete old Windows restore points to free up space

By checking your storage usage, deleting old restore points, and setting reasonable storage limits, you can keep your storage under control without sacrificing its protection.

How to fix Microsoft Store not working error

How to fix Microsoft Store not working error

Microsoft Store (Windows Store) is not the most popular app store, as it is full of bugs, issues, and tends to be unstable.

What is Windows Superfetch (SysMain)? How to disable Superfetch?

What is Windows Superfetch (SysMain)? How to disable Superfetch?

SuperFetch is available on Windows versions but is known by very few users. In the article below, WebTech360 will guide you how to enable or disable SuperFetch on Windows 10/8/7.

How to view Windows 11 text and image creation apps

How to view Windows 11 text and image creation apps

Starting with Windows 11 build 26120.4741 (Beta 24H2) and build 26200.5710 (Dev 25H2), users can see which third-party apps have used Windows-powered AI models.

How to fix the error “Ethernet doesnt have a valid IP configuration”

How to fix the error “Ethernet doesnt have a valid IP configuration”

Sometimes DHCP cannot get a valid IP address from the Network Interface Card, it will show an error message “Ethernet doesn't have a valid IP configuration”.

PowerShell and everything you need to know about this utility

PowerShell and everything you need to know about this utility

What is PowerShell? Microsoft PowerShell is a command-line utility and scripting language that is a powerful tool for administrators, allowing you to automate a wide range of tasks for computers and networks.

Popular TP Link modem login addresses

Popular TP Link modem login addresses

To change the password or WiFi name for TP Link modem, users need to log in to the address for this modem line. So what is the TP Link modem login address?

Top 10 best internet security software today

Top 10 best internet security software today

These days, users can pay to protect all their devices – whether it’s a PC, Mac, or smartphone. But with so many options on the market today, it can be hard to know where to start. Here’s a list of the best internet security suites available today.

How to Change DNS Server on Windows 11

How to Change DNS Server on Windows 11

If the default DNS server provided by your ISP seems slow, insecure, or unreliable, you don't have to use it. Here's how you can change the DNS server settings on your Windows 11 computer.

Enable GodMode on Windows 10, 8 and 7

Enable GodMode on Windows 10, 8 and 7

GodeMode is called Shortcut Windows Master Control Panel. GodMode (or God Mode) is a control panel, allowing you to set up and access everything on your Windows operating system.

How to set up automatic computer cleaning

How to set up automatic computer cleaning

Computers often get overloaded with temporary files and other junk that we often don't have time to clean up. This is where automatic cleaning comes in and you should start using it right away.

Simple Sandbox Tips to Help You Stop Worrying About Malware

Simple Sandbox Tips to Help You Stop Worrying About Malware

Malware attacks have never been more intense, but we're finally finding peace of mind thanks to strategic sandboxing techniques.

How to Backup and Restore Microsoft Defender Windows 11

How to Backup and Restore Microsoft Defender Windows 11

You can back up and restore your Microsoft Defender settings on a new computer or troubleshoot any issues you may have with the application.

12 Most Useful PowerShell Commands for Windows

12 Most Useful PowerShell Commands for Windows

Most IT admins use PowerShell for scripting and automation, but it's not just for IT pros—anyone who deals with messy folders needs these commands.

12 Best Custom PC Building Websites

12 Best Custom PC Building Websites

Building a custom PC is no easy task, especially for beginners. Luckily, there is plenty of help available on the Internet.

How to delete old Windows restore points to free up space

How to delete old Windows restore points to free up space

By checking your storage usage, deleting old restore points, and setting reasonable storage limits, you can keep your storage under control without sacrificing its protection.

How to fix Microsoft Store not working error

How to fix Microsoft Store not working error

Microsoft Store (Windows Store) is not the most popular app store, as it is full of bugs, issues, and tends to be unstable.

What is Windows Superfetch (SysMain)? How to disable Superfetch?

What is Windows Superfetch (SysMain)? How to disable Superfetch?

SuperFetch is available on Windows versions but is known by very few users. In the article below, WebTech360 will guide you how to enable or disable SuperFetch on Windows 10/8/7.

How to view Windows 11 text and image creation apps

How to view Windows 11 text and image creation apps

Starting with Windows 11 build 26120.4741 (Beta 24H2) and build 26200.5710 (Dev 25H2), users can see which third-party apps have used Windows-powered AI models.

How to fix the error “Ethernet doesnt have a valid IP configuration”

How to fix the error “Ethernet doesnt have a valid IP configuration”

Sometimes DHCP cannot get a valid IP address from the Network Interface Card, it will show an error message “Ethernet doesn't have a valid IP configuration”.

PowerShell and everything you need to know about this utility

PowerShell and everything you need to know about this utility

What is PowerShell? Microsoft PowerShell is a command-line utility and scripting language that is a powerful tool for administrators, allowing you to automate a wide range of tasks for computers and networks.

Popular TP Link modem login addresses

Popular TP Link modem login addresses

To change the password or WiFi name for TP Link modem, users need to log in to the address for this modem line. So what is the TP Link modem login address?

Top 10 best internet security software today

Top 10 best internet security software today

These days, users can pay to protect all their devices – whether it’s a PC, Mac, or smartphone. But with so many options on the market today, it can be hard to know where to start. Here’s a list of the best internet security suites available today.

How to Change DNS Server on Windows 11

How to Change DNS Server on Windows 11

If the default DNS server provided by your ISP seems slow, insecure, or unreliable, you don't have to use it. Here's how you can change the DNS server settings on your Windows 11 computer.

Enable GodMode on Windows 10, 8 and 7

Enable GodMode on Windows 10, 8 and 7

GodeMode is called Shortcut Windows Master Control Panel. GodMode (or God Mode) is a control panel, allowing you to set up and access everything on your Windows operating system.

How to set up automatic computer cleaning

How to set up automatic computer cleaning

Computers often get overloaded with temporary files and other junk that we often don't have time to clean up. This is where automatic cleaning comes in and you should start using it right away.

Simple Sandbox Tips to Help You Stop Worrying About Malware

Simple Sandbox Tips to Help You Stop Worrying About Malware

Malware attacks have never been more intense, but we're finally finding peace of mind thanks to strategic sandboxing techniques.

How to Backup and Restore Microsoft Defender Windows 11

How to Backup and Restore Microsoft Defender Windows 11

You can back up and restore your Microsoft Defender settings on a new computer or troubleshoot any issues you may have with the application.