This is my first instructable so tell me what my mistakes were and how i can improve my next instructable.
Remove these ads by
Signing UpStep 1Open up notepad.
| « Previous Step | Download PDFView All Steps | Next Step » |
Remove these ads by
Signing Up| « Previous Step | Download PDFView All Steps | Next Step » |

All Steps Viewing
View all steps of an Instructable on the same page when you're a Pro Member.
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" (Folder Name)
if got another locker also md locker the loker also can open ur files
or attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" (Folder Name)
that can open the lock folder
cls
@ECHO OFF
title Folder Locker
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
color 0e
echo Lock?(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.
PAUSE
goto CONFIRM
:LOCK
color 0a
ren Locker "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
pause
goto End
:UNLOCK
color 0e
echo What is the password?
set/p "pass=>"
if NOT %pass%== goto FAIL
color 0a
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker
echo Folder Unlocked successfully
PAUSE
goto End
:FAIL
color 0c
echo Invalid password
pause
goto end
:MDLOCKER
md Locker
echo Locker created successfully
pause
goto End
:End
thanks
1 do the Instructable
2 make a shortcut to the locker in the same folder after locker file folder is done
3 rename the locker "key"
4 make the "key" read only and hidden
5 rename the shortcut "lock"
6 in properties of "lock" change the icon to the lock looking one
7 also in properties go to colors and change all of the colors to black for invisibility (optional)
8 finally make "lock" read only
questions pm me for pic ect if you need them
thanks!!!
i needed that to put my other batch files in. so people wouldn't go deleting it or whatever.=)
anyway, great job. and really easy to do!=)