0% found this document useful (0 votes)
93 views20 pages

How To Password Protect A Folder in Windows 10

How to Password Protect a Folder in Windows 10

Uploaded by

Hatem Shawki
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
93 views20 pages

How To Password Protect A Folder in Windows 10

How to Password Protect a Folder in Windows 10

Uploaded by

Hatem Shawki
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 20

Advertisement

-47% -35% -58%

‫ﺣﺎﻣﻞ اﻟﺘﻠﻔﺰﻳﻮن‬ ‫وات‬850 ‫ﻫﻴﻠﺘﻲ‬ ‫ﺳﻤﺎﻋﺎت ﻛﻤﺒﻴﻮﺗﺮ‬ ‫ذاﻛﺮة ﻳﻮ اس ﺑﻲ‬


‫ ﻛﺞ‬45 ‫…ﻟﻮزن ﺣﺘﻰ‬ APT ‫… ﺻﻐﻴﺮة ﺗﻌﻤﻞ ﻋﻠﻰ‬ ‫…ﻓﻼش داﺗﺎ ﺗﺮاﻓﻴﻠﺮ‬

530 ‫ﺟﻨﻴﻪ‬ 825 ‫ﺟﻨﻴﻪ‬ 39 ‫ﺟﻨﻴﻪ‬ 59 ‫ﺟﻨﻴﻪ‬


-43%

‫اوﺗﻮﻣﺎﺗﻴﻚ وﺑﺪﻳﻞ‬ ‫ﺣﺬاء رﻳﺎﺿﻲ‬ ‫ﺻﺎروخ ﻗﻄﻌﻴﺔ ﻣﻦ‬ ‫ﻣﺰﻳﺖ ﻣﺘﻌﺪد‬


‫…اﻟﺒﺎﻟﻮﻧﻪ ﻟﻤﻮاﺗﻴﺮ ال‬ ‫…ﻛﺎﺟﻮال ﻟﻠﻨﺴﺎء م‬ 7 ‫ ﺑﻮﺻﺔ‬4.5 ‫…اﻧﻜﻮ‬ 1 ‫…اﻟﻺﺳﺘﺨﺪاﻣﺎت‬

999 ‫ﺟﻨﻴﻪ‬ 169 ‫ﺟﻨﻴﻪ‬ 369 ‫ﺟﻨﻴﻪ‬ 34 ‫ﺟﻨﻴﻪ‬

How To Password Protect a Folder in Windows 10


By Henry T. Casey | February 6, 2019 03:00 pm

0 0   MORE 

We all have computer files we'd like to keep secret from the world. Whether you're working on taking
legal action against someone with access to your computer or (hopefully) something less drastic,
you're allowed to hide things from others. Fortunately, in Windows 10, you can tuck those
unmentionable plans or files in a secret folder that is password protected, and you can do it
without buying any additional software. 

-39%
20 ‫ ﺟﻢ ﻣﻦ ﻛﻴﻮ‬300 ‫ﻣﺰﻳﺖ ﻣﺘﻌﺪد اﻟﻺﺳﺘﺨﺪاﻣﺎت‬ ×
20 ‫ ﺟﻢ ﻣﻦ ﻛﻴﻮ‬300 ‫ﻣﺰﻳﺖ ﻣﺘﻌﺪد اﻟﻺﺳﺘﺨﺪاﻣﺎت‬

46 ‫ﺟﻨﻴﻪ‬
A note before you start:
We've recieved comments about issues people have run into with this how-to. So, we went back and
performed multiple rounds of testing internally, and can now confirm that following this process
closely, step-by-step, works — at least on our end.

But just to be safe, you should first try this how to using files you can lose, stuff that isn't important.
Also, make sure you're keeping some record, somewhere, of the exact password you're using to lock
your folder. If you lose the password, your files are gone.

Also, yes, the FolderLocker file can be reverse engineered by someone who understands the process,
but this isn't meant to keep tech-savvy folks out, just nosy family members who you don't trust.

Here's how to create a folder that you can fill with files you want to keep secret, lock it, open it and
repeat.

Advertisement

-23% -55%

-26% -20%

 
How To Lock a Folder With a Password in Windows 10
1. Right-click inside the folder where the files you want to protect are located. The folder you want to
hide can even be on your desktop.

MORE: How to Change Your Password in Windows 10

2. Select "New" from the contextual menu. 

×
3. Click on "Text Document."

4. Hit Enter. It doesn't matter what the file will be named. You can delete this text file once the ×
lockable folder has been made.
5. Double-click the text file to open it.

6. Paste the below text into the new document: ×


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-Here 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

7. Find where it says "Your-Password-Here" in the document.

×
 8. Replace "Your-Password-Here" with the password you want to lock the folder with.

9. Click File.

×
10. "Select Save As..."

11. Click on the "Text Documents (*.txt)" menu bar that's next to "Save as type:"

×
12. Select "All Files"

13. Change the file name to "FolderLocker.bat"


×
14. Click "Save."

15. Double-click FolderLocker.

×
The Locker folder has been generated!

16. Fill the Locker folder with the items you want to protect.

17. Open the FolderLocker file, because it's time to lock that folder up!

×
18. Type "Y" into the screen.

19. Click Enter, and the Folder Locker window will disappear, along with the Locker folder itself! Your
secrets are safe!

×
To unlock the folder, double-click "FolderLocker" to open it.

Enter the password you entered in Step 8, and click Enter.

×
The Locker folder is back. You can open it to find your hidden files. Repeat Steps 17, 18 and 19 to
lock the folder again.

×
«« Previous Tip Windows 10 Security and Next Tip »»
Networking

Turn Your Windows PC into a Wi-Fi Password Protect a Folder Create a Guest Account in Windows
Hotspot 10

 More Tips 
Use the Windows 10 Parental Controls
Find Your MAC Address
Turn Your Windows PC into a Wi-Fi Hotspot
Password Protect a Folder
Create a Guest Account in Windows 10
Enable Windows Hello Fingerprint Login
Set Up Windows Hello Facial Recognition
How to Restrict Cortana's Ever-Present Listening in Windows 10
Automatically Lock Your PC with Dynamic Lock
Blacklist Non-Windows Store Apps
Find Saved Wi-Fi Passwords
Set Up a Metered Internet Connection
Use Find My Device
Stream XBox One Games
All Windows 10 Tips
Map a Network Drive
Create Limited User Accounts
Set Time Limits for Kids
Pin People to Your Taskbar

FROM THE WEB Ads by Revcontent


Illegal Photos Of North Korea That Are Mind Blowing
Newscityhub

Totally Broke and Now Working a Disgusting Job


Play Junkie

28 Heartbreaking Photos North Korea Didn't Want Released


Newscityhub

Join Revcontent: The World's Fastest Growing Native Ad Network


Revcontent
Powr Video Player Driving Revenue for Publishers
Forbes

AUTHOR BIO

Henry T. Casey,
Henry is a senior writer at Laptop Mag, covering security, Apple and operating systems. Prior to joining Laptop Mag
— where he's the self-described Rare Oreo Expert — he reviewed software and hardware for TechRadar Pro, and
interviewed artists for Patek Philippe International Magazine. You can find him at your local pro wrestling events,
and wondering why Apple decided to ditch its MagSafe power adapters.

Henry T. Casey, on  

YOU'D ALSO LIKE

How to Reset Your Windows 10 PC


Laptopmag 

How Microsoft Is Moving Beyond Windows


Laptopmag 

How To Disable Taskbar on a Second Monitor in Windows 10


Laptopmag  ×

How to Use Windows 10


Laptopmag 
Laptopmag 

-54% -43%

-43%

-58% -55%

-35%

-53%

Advertisement

SUBSCRIBE
enter email here ... SUBMIT

‫ ﺟﻢ‬150 ‫ﻣﺰﻳﺖ ﻣﺘﻌﺪد اﻟﻺﺳﺘﺨﺪاﻣﺎت‬


20 ‫ﻣﻦ ﻛﻴﻮ‬

‫ﻛﻮم اﻛﺒﺮ ﻣﻮﻗﻊ ﻟﻠﺘﺴﻮق اﻻﻟﻜﺘﺮوﻧﻲ ﻓﻲ‬.‫ﺳﻮق‬ ×


‫ اﺷﺘﺮي أﻻن‬-‫ﻣﺼﺮ‬
SPONSORED BY egypt.souq.com
Advertisement
Advertisement

HOME ABOUT US

    
SUBSCRIBE TO LAPTOP
SUBMIT
enter email here ...

Copyright © 2019 All Rights Reserved.

You might also like