Introduction: How to Put a Password on Any USB Flashdrive
The following steps are a great way to put a password on any USB flash drive. The following is a .bat file and is fairly simple to make. [Only works on windows]
This also works on regular windows files. Just adapt the steps to the folder you want to hide instead of the flash drive.
Warning:
I am not responsible for any lost and corrupted files. I highly suggest you back up your files before continuing.
Step 1: Move Your Folders
First, plug in your drive, and go to the flash drive's folder. Then create a new folder. Lets name this folder "Lock." Now move all the files you wish to hide into "Lock." Make sure "Lock" is still on the flash drive.
Step 2: Hide Your Folder
Now, open CMD (if you don't know what this is and want to learn check out my instructable on it) type in "g:" hit enter and type "attrib Lock +s +h" (if you have a folder name other than "Lock" use the name of your folder) this should now make you folder "disappear." The folder is now invisible. Although still accessible, it cannot be seen unless the specific folder path is typed in.
Step 3: Actual Batch Coding
Open notepad and paste the following script:
____________________________________________________________________________________
@echo off
title Orange Shadow's Folder Lock set pass= [your password here!]
color a
echo----Enter Password----
set /p ui= if %ui%==%pass% (goto open)
echo Wrong Password! pause
exit :open start Lock
_____________________________________________________________________________________
There are two variables here:
Where it says in bold "[your password here!]" change it to what you want your password to be.
Then there is "Lock" go ahead and change the name to what your new folder's name is.
Save this script as a .bat file. To do this, go to save as, and after the name of the title, type ".bat" For example, "Password.bat"
Save this where ever you want, preferably on the flash drive itself.
Step 4: Voila
Now, to access that hidden folder, open the bat file, enter the password, and the hidden file will open.
Step 5: Turning Into an .exe
The thing about having a .bat file is that you can easily edit the script, making it accessible to anyone. Making this project is more of a novelty than actual "security."
However, There is a solution. Turning the .bat in a .exe (Windows executable program).
To do this click this link here and download the program (or use any other .bat to .exe converter you wish). Follow the procedures, and you should be set.
1 Person Made This Project!
- RasmusK6 made it!
18 Comments
6 years ago on Introduction
i am stuck on step 2 please help
Reply 7 weeks ago
I think I am too late to help.
Question 1 year ago on Step 2
Dears,
Thank you for the topic.
One question... I have hidden a folder. Now how could it be reverted?
Thanks
Answer 9 months ago
just replace the "+" with "-" and you're good to go.
3 years ago
Sorry to bother you, I just wanted to ask if you know how to remove it? I want to switch to Linux, but since it only works on Windows I wouldn't be able to access my files :$
Reply 1 year ago
Read my quote above
1 year ago
So how do you reverse the process? He never stated, did he?
"attrib [your folder name] -s -h"
Anyway, my advice (after trying this password trick for a while): DON'T DO IT!
He did state, and I quote: "I am not responsible for any lost and corrupted files. I highly suggest you back up your files before continuing."
One of my Maxtor drives is now corrupted: just the folder I added the password to, nothing else. If he knew it was risk free he wouldn't have added the preamble. Stupid, stupid me for trying this. I've just lost years of accumulated data, probably. Avoid people like this. Don't fall for it they way I did, you've been warned.
3 years ago
I followed your instructions to the end...
The file is hidden and when I put the password it was not opening ......Again it show to put password again .....
I can't able to find my file
5 years ago
Hi, I was viewing this and made flether-1's version a little easier to use
@echo off
title Drive Locked
color 2
:0
echo================= & echo Enter Password & echo ================
set /p password=
if %password%==YOURPASSWORDHERE goto :1
echo Wrong Password
pause
goto :0
:1
echo Success!
pause
(START \YOURFOLDERNAMEHERE)
Reply 4 years ago
Oh my god thank you so much for this updated version. I used the other one and couldn't open my file and spent several hours trying to fix it myself before looking through these. The original kept givving me error mesages.
Reply 5 years ago
i used this code. thanks bro.
4 years ago
i typed g: in cmd but its says
The system cannot find the drive specified.
5 years ago
pahelp naman po pls. sa thesis namin need po namin ng codes para malock ung external hard drive then dapat di pwede mareformat hanggat mali ung password. thank you ??
5 years ago
Folder Lock is a convenient tool to add password to any folder on Windows. The steps are simple and the protection is quite secure. You can follow the steps in here: http://www.imoresoft.com/folder-lock.html
6 years ago
File Folder performs better than the above tool because it has a much cleaner user interface instead of command line. You can check out: http://www.imoresoft.com/folder-lock.html
6 years ago
Fixed his code and made some adjustments if anyone is interested. Just change the bold "test" to whatever you want your password to be and change the E:\Files to the drive letter and folder name.
6 years ago
i encounter error.. "Enter is not part of external or internal command" :'(
6 years ago
where do i need to save the notepad i created? do i need to have the program installed?