thecatch is that the password is loaded into the batch files through a free-standing text file.
and please rate this instructable.
Remove these ads by
Signing UpStep 1Making The File
either open the run box and type "notepad.exe"
or click start then goto all programms
then to accessories and finally click on notepad.
then type in:
@echo off
set /p password= <password.txt
title Folder Locker
color C
:begin
echo.
echo please type the password please...
echo.
echo =) you have as many tries as you want =)
set /p passcode=">"
if %passcode%==%password% (
goto right
)
goto wrong
:right
echo that is the right password!!
pause
start "your destination here"
goto exit
:wrong
echo
echo =( in sorry that is the wrong password =(
echo
pause
goto begin
after you copy that save the file as "anything".bat
| « Previous Step | Download PDFView All Steps | Next Step » |











































1. put password in the file
2. convert to exe
Still all you have to do is change the view options
I think he was going off about the fact that
attrib +s +h
does not "lock" the folder. It merely hides it.
such as C:\your folder here
in the place of your destination here
just rember no quotes.