<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Chinmay Chiranjeeb &#187; FolderLock</title>
	<atom:link href="http://www.chiranjeeb.com/tag/folderlock/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.chiranjeeb.com</link>
	<description>a UI Developer.</description>
	<lastBuildDate>Thu, 19 Jan 2012 21:56:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Folder Lock without any Software!!!</title>
		<link>http://www.chiranjeeb.com/folder-lock-without-any-software/</link>
		<comments>http://www.chiranjeeb.com/folder-lock-without-any-software/#comments</comments>
		<pubDate>Sun, 22 Feb 2009 17:27:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[FolderLock]]></category>
		<category><![CDATA[Security Tips]]></category>

		<guid isPermaLink="false">http://www.chiranjeeb.com/folder-lock-without-any-software</guid>
		<description><![CDATA[Many people have wished to lock folders without the use of any alternative software. So, here you go. Lets Create a Batch file to do the Folder Lock and Unlock. Open Notepad and copy the below code and save as &#8230; <a href="http://www.chiranjeeb.com/folder-lock-without-any-software/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><font size="2"><span style="font-family: Arial;">Many people have wished to lock folders without the use of any alternative software. So, here you go.</span></font><font style="font-family: Arial;" size="2" face="Arial"><span style="font-size: 10pt;"><br />
</span></font><font size="2"><br style="font-family: Arial;" /><span style="font-family: Arial;"> Lets Create a Batch file to do the Folder Lock and Unlock.</p>
<p>Open Notepad and copy the below code and save as <span style="font-weight: bold;">locker.bat</span> .<br />
Don&#8217;t forget to change your password in the code it&#8217;s shown the place where to <span style="font-weight: bold;"></span></span></font><font size="2" color="green" face="Verdana"><span style="font-size: 10pt; color: green; font-family: Verdana;"><span style="font-weight: bold; font-style: italic; color: rgb(255, 0, 0);">Type your Password</span></span></font><font size="2"><span style="font-family: Arial;"><span style="font-weight: bold;"></span>. </span></font><font style="font-family: Arial;" size="2" face="Arial"></p>
<p>Now double click on <b><span style="font-weight: bold;">locker .bat </span></b>to run(execute) the file.<br />
&nbsp;<br />
First time start it will create folder with <b><span style="font-weight: bold;">Locker</span></b> automatically for you.</p>
<p>Place the contents that you want to lock inside the <b><span style="font-weight: bold;">Locker</span></b> Folder.</p>
<p><span style="font-weight: bold; text-decoration: underline;">Lock the folder:</p>
<p></span>Run <span style="font-weight: bold;">locker.bat</span> .</font><font style="font-family: Arial;" size="2" face="Arial"><span style="font-size: 10pt;"></span></font><font size="2"></p>
<p>Are You Sure You Want To Lock The Folder(Y/N)<br />
&gt; Y<br />
<span style="font-family: Arial;"><br />
Press the enter</p>
<p>Your Folder is Locked Successfully.</p>
<p>After this the folder will be in hidden mode. and you can&#8217;t see this folder even if you set Show hidden files and folders at the&nbsp; Tools -&gt; Folder options.</p>
<p></span></font><font style="font-family: Arial;" size="2" face="Arial"><span style="font-weight: bold; text-decoration: underline;">Unlock the folder:</span></font><br style="font-family: Arial;" /><font size="2"><span style="font-family: Arial;"></span><span style="font-family: Arial;"> &nbsp;</span></font><font style="font-family: Arial;" size="2" face="Arial"><br />
Run the</font><font style="font-family: Arial;" size="2" color="navy" face="Arial"><span style="font-size: 10pt; color: navy;"> </span></font><font face="Arial"><span style="font-family: Arial;"><font size="2"><span style="font-family: Arial;">locker.bat again and give the password</p>
<p>It will show the Locker Folder.<br />
&nbsp;</span></font><font color="#4f4f4f"><span style="color: rgb(79, 79, 79);"><br />
</span></font></span></font><font size="2" face="Arial"><span style="font-size: 10pt; font-family: Arial;"></span></font><font color="#4f4f4f" face="Arial"><span style="color: rgb(79, 79, 79); font-family: Arial;"><br />
<span style="text-decoration: underline; color: rgb(0, 0, 0); font-family: Arial;"><span style="font-weight: bold;">Source Code</span></span></span></font><font style="font-family: Arial;" size="2" face="Arial"><span style="font-weight: bold; text-decoration: underline;"><span style="color: rgb(0, 0, 0); font-family: Arial;">:</span></p>
<p></span></font><font size="2" color="green" face="Verdana"><span style="font-size: 10pt; color: green; font-family: Verdana;"> cls<br />
@ECHO OFF<br />
title Folder Locker<br />
if EXIST &#8220;Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}&#8221; goto UNLOCK<br />
if NOT EXIST Locker goto MDLOCKER<br />
:CONFIRM<br />
echo Are You Sure You Want To Lock The Folder(Y/N)<br />
set/p &#8220;cho=&gt;&#8221;<br />
if %cho%==Y goto LOCK<br />
if %cho%==y goto LOCK<br />
if %cho%==n goto END<br />
if %cho%==N goto END<br />
echo Invalid Password. Please Try Again<br />
goto CONFIRM<br />
:LOCK<br />
ren Locker &#8220;Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}&#8221;<br />
attrib +h +s &#8220;Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}&#8221;<br />
echo Folder Locked<br />
goto End<br />
:UNLOCK<br />
echo Enter Password to Unlock Folder<br />
set/p &#8220;pass=&gt;&#8221;<br />
if NOT %pass%==<span style="font-weight: bold; font-style: italic; color: rgb(255, 0, 0);">Type your Password</span> goto FAIL<br />
attrib -h -s &#8220;Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}&#8221;<br />
ren &#8220;Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}&#8221; Locker<br />
echo Folder Unlocked Successfully<br />
goto End<br />
:FAIL<br />
echo Invalid Password<br />
goto end<br />
:MDLOCKER<br />
md Locker<br />
echo Locker Created Successfully<br />
goto End<br />
:End</p>
<p></span></font><font color="#4f4f4f" face="Arial"><span style="color: rgb(79, 79, 79); font-family: Arial;"><span style="text-decoration: underline; color: rgb(0, 0, 0); font-family: Arial;"><span style="font-weight: bold;">Security Tips</span></span></span></font><font style="font-family: Arial;" size="2" face="Arial"><span style="font-weight: bold; text-decoration: underline;"><span style="color: rgb(0, 0, 0); font-family: Arial;">:</p>
<p></span></span></font>
<ul>
<li><font style="font-family: Arial;" size="2" face="Arial"><span style="color: rgb(0, 0, 0); font-family: Arial;">Don&#8217;t open the locker.bat file or Type the Password to open the folder in front of any one.</span></font></li>
<li><font style="font-family: Arial;" size="2" face="Arial"><span style="color: rgb(0, 0, 0); font-family: Arial;">Put it in the C:/ drive&nbsp; and rename it.</span></font></li>
</ul>
<p><font style="font-family: Arial;" size="2" face="Arial"><span style="font-weight: bold; text-decoration: underline;"><span style="color: rgb(0, 0, 0); font-family: Arial;"><br />
</span></span></font><font size="2" color="green" face="Verdana"><span style="font-size: 10pt; color: green; font-family: Verdana;"></span></font><font size="2" color="blue" face="Arial"><span style="font-size: 10pt; color: blue; font-family: Arial;"></span></font>  <font size="2" color="blue" face="Arial"><span style="font-size: 10pt; color: blue; font-family: Arial;"></span></font></p>
]]></content:encoded>
			<wfw:commentRss>http://www.chiranjeeb.com/folder-lock-without-any-software/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

