Welcome to my blog, hope you enjoy reading
RSS

Tuesday 25 June 2013

Folder Lock without any S/W in Windows

Folder Lock without any S/W in Windows

Open Notepad and copy the be low code and save as lock e r.bat. At first tim e start it will cre ate folde r with Lock e r autom atically for u. Don't forge t to
change your password in the code its shown the place whe re to type your password.
afte r cre ation of Lock e r folde r again click on the lock e r.bat.it will ask .pre ss Y the n Lock e r folde r will be disappe are d.again to ge t it click on lock e r.bat.
and give ur password u will ge t the folde r again.
****************************************


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%==javanotes2all 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

  • you can change the javanotes2all with your password.
  • for download file click here.

0 comments: