Hiding a folder in Windows 10 with a password isn’t a built-in feature, but don’t fret! You can do it by using a bit of creativity with system tools like batch files. First, you’ll create a folder to hide. Then, using a simple script, you’ll be able to toggle its visibility and even add a password prompt. Once set up, accessing your hidden files becomes a secret handshake only you know.
How to Hide a Folder in Windows 10 with Password
These steps will guide you through creating a hidden folder that can only be accessed with a password. By the end of this, you’ll have a secure, stealthy space for your personal files.
Step 1: Create a New Folder
First, create a new folder by right-clicking on your desktop or inside any other folder, and selecting ‘New Folder’.
Now, name this folder something non-descript to avoid drawing attention, like “System Files” or “Work in Progress”. It might not seem like much, but a good name is half the battle won!
Step 2: Open Notepad
Next, open Notepad by searching for it in the Start Menu and selecting it.
Notepad is your gateway to creating the magic script that will secure your folder. It’s simple to use and perfect for this task.
Step 3: Write the Batch Script
In Notepad, copy and paste the following script:
@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 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 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%==YOURPASSWORDHERE 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
Replace “YOURPASSWORDHERE” with your chosen password. Make sure it’s something memorable but not easily guessable.
Step 4: Save the Script
Save this file as “locker.bat” in the same location as your new folder.
Remember to change the ‘Save as type’ dropdown to ‘All Files’ to ensure it’s saved correctly as a batch file. This is key; otherwise, the magic won’t happen!
Step 5: Use the Script to Hide and Password Protect the Folder
Double-click on the “locker.bat” file. A new folder named “Locker” will appear. Place the files you want to hide inside this folder.
After placing your files, run “locker.bat” again. You’ll be prompted to lock the folder; press ‘Y’ to confirm. Your folder will vanish as if by magic!
Once you’ve completed these steps, your folder will be hidden. To view the folder again, you’ll run the “locker.bat” file and enter your password. Only those who know the password will be able to access the contents of the folder.
Tips for Hiding a Folder in Windows 10 with Password
- Regularly update your password to keep it secure.
- Keep a backup of important files in case you forget the password.
- Use a nondescript name for the main folder to avoid suspicion.
- Avoid sharing the password unnecessarily to maintain privacy.
- Consider using additional security software for sensitive files.
Frequently Asked Questions
Can I hide multiple folders within the main folder?
Yes, you can place as many folders as you want inside the “Locker” folder. Only the primary folder is hidden.
What if I forget my password?
Unfortunately, this method doesn’t have a password recovery option. It’s wise to write it down somewhere safe.
Is there a risk of data loss?
If you follow the steps correctly, there should be no risk. Always back up important data to be safe.
Can anyone access my folder without the password?
No, the folder remains hidden and inaccessible without the correct password.
Can I use this method on other versions of Windows?
Yes, this method works on other versions of Windows, but steps might vary slightly depending on the version.
Summary
- Create a new folder.
- Open Notepad.
- Write the batch script.
- Save the script as “locker.bat”.
- Use the script to hide and password-protect the folder.
Conclusion
Hiding a folder in Windows 10 with a password can seem like a daunting task, but with a bit of patience and some simple steps, it’s as easy as pie. This method allows you to keep your sensitive files tucked away, away from prying eyes. Although it doesn’t use sophisticated encryption methods, it offers a basic layer of security that works well for everyday needs.
Consider this approach your secret nook in the digital world — a place where you can store your treasures without fear of them being discovered. It’s like having a hidden drawer in your desk that only you know about. While there are other software solutions out there that offer more robust features, this method is free, simple, and effective for those looking to quickly secure files.
Remember, with great power comes great responsibility, so keep your password secure and change it occasionally to maintain the integrity of your hidden folder. If you ever want to expand your security measures, exploring encryption software might be your next step. For now, enjoy the peace of mind that comes with having your very own secret folder.

Matt Jacobs has been working as an IT consultant for small businesses since receiving his Master’s degree in 2003. While he still does some consulting work, his primary focus now is on creating technology support content for SupportYourTech.com.
His work can be found on many websites and focuses on topics such as Microsoft Office, Apple devices, Android devices, Photoshop, and more.