Locking Folder With Batch
Page 1 of 1 • Share •
Locking Folder With Batch
1) First start notepad
Type in this code:
Replace 'password here' at line 23 with desired password.
2) Save it in the directory you want your folder to be locked at, as locker.bat
3) Double click it to run the batch file. A new folder called private will be created.
4) Place whatever documents you want inside the Private folder.
5) Run the batch file again and it will ask you if you want to lock it. Type 'y' or 'Y' and hit enter.
You will notice that the Private becomes a shortcut to the Control Panel.
6) To unlock run the batch file again and type in the password you set earlier and hit enter.
The strange thing is that sometimes it disappear. This happens because Windows associated it with a system file and hides it.
You can unhide it by going to Tools->Folder Option->View->Show hidden files and folder (check this)->Hide protected operating system files...(uncheck this) Hit OK.
Type in this code:
- Code:
cls
@ECHO OFF
title Folder Private
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Private 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 Private "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}" Private
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Private
echo Private created successfully
goto End
:End
Replace 'password here' at line 23 with desired password.
2) Save it in the directory you want your folder to be locked at, as locker.bat
3) Double click it to run the batch file. A new folder called private will be created.
4) Place whatever documents you want inside the Private folder.
5) Run the batch file again and it will ask you if you want to lock it. Type 'y' or 'Y' and hit enter.
You will notice that the Private becomes a shortcut to the Control Panel.
6) To unlock run the batch file again and type in the password you set earlier and hit enter.
The strange thing is that sometimes it disappear. This happens because Windows associated it with a system file and hides it.
You can unhide it by going to Tools->Folder Option->View->Show hidden files and folder (check this)->Hide protected operating system files...(uncheck this) Hit OK.
Last edited by Agent on Thu 07 Aug 2008, 2:19 am; edited 1 time in total

Agent Cosmic
Global Moderator | Developer
- Posts: 3266
Joined: 2008-03-07
Operating System: Windows 7

Re: Locking Folder With Batch
I registered to say thanks for this. 

glitters_
Newbie Surfer
- Posts: 5
Joined: 2008-08-06
Re: Locking Folder With Batch
You are welcome.

Agent Cosmic
Global Moderator | Developer
- Posts: 3266
Joined: 2008-03-07
Operating System: Windows 7

Re: Locking Folder With Batch
Thanks a lot !
Help GeekPolice - Donate!
Visit us on social networks : GeekPolice on Facebook! - GeekPolice on Twitter!


Nazzgull
Tech Advisor
- Posts: 1505
Joined: 2008-08-03
Operating System: Windows XP Professional Service Pack 3
Re: Locking Folder With Batch
wwooooowwww!!!!!really amazed.....but before i am using some programmes like folder lock...etc..to hid and lock my folder..here after i will use this method..thx.. 








vikneshwaren
Senior Surfer
- Posts: 247
Joined: 2008-12-23
Operating System: Microsoft Windows 7 Ultimate
Permissions of this forum:
You cannot reply to topics in this forum













by 
