Jump to content

folder locker help


kakashi
 Share

Recommended Posts

Hi Everyone,

i have .bat script to lock folders and it's working so far, however the password can't be changed.

so is there any idea how to make a script that change and edit the .bat file?

and put some options besides password change like in the main menu

three options (Lock Folder - Unlock Folder - Change Password)

i hope that was understandable LOL

here is the script

@ECHO OFF 

title Folder Folder.LoCkEr

if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK 
if NOT EXIST Folder.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 Folder.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%== Password Here goto FAIL 
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" 
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Folder.LoCkEr 
echo Folder Unlocked successfully 
goto End 
:FAIL 
echo Invalid password 
goto end 
:MDLOCKER 
md Folder.LoCkEr
echo Folder.LoCkEr created successfully 
goto End 

:End

thanks in advance

later~

Link to comment
Share on other sites

Hopefully, you do realize that having the password hard coded in the batch file is the worst security you can ever have?

hmm. it doesn't seem that bad

how about if we try to do the same idea using autoit?

i think it would be a nice idea

hm i have been looking into ways to lock folders using autoit.. It would probably be better than struggling with a .bat file as well as allow for password changing and customization

i know .bat files are damn old fashion they're like old perverted files LOL

lets see if someone would help us to do it using autoit

i'll try to figure it out soon

later~

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...