locking your folder just using bat program

Posted on July 23, 2010

0


locking your folder using bat program, build by notepad. easy and simple way to securing your private folder. open your notepad and type this

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

  • change the “YOUR PASSWORD HERE” with your password.
  • save it as batch file ( with extension .bat ) For eg. Locker.bat
  • now you will see a batch file. double click it to create a folder locker ( A new folder named Locker would be formed at the same location )
  • thats it you have now created your own locker and that too without using any software !
  • brings all the files you want to hide in the locker folder.
  • double click the batch ( as created above ) file to lock the folder namely Locker.
Advertisement
Posted in: Winshit