<?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>Geeky Tips &#187; Lock Folder</title>
	<atom:link href="http://geekytips.com/blog/tag/lock-folder/feed" rel="self" type="application/rss+xml" />
	<link>http://geekytips.com/blog</link>
	<description></description>
	<lastBuildDate>Wed, 08 Jun 2011 11:15:29 +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>How to Create Password Protected Folder without any Software</title>
		<link>http://geekytips.com/blog/how-to-create-password-protected-folder-without-any-software/</link>
		<comments>http://geekytips.com/blog/how-to-create-password-protected-folder-without-any-software/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 18:33:37 +0000</pubDate>
		<dc:creator>Sampat</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Lock Folder]]></category>
		<category><![CDATA[Password Protected Folder]]></category>

		<guid isPermaLink="false">http://geekytips.com/blog/?p=2099</guid>
		<description><![CDATA[People are always requesting to use our computer, at that time we are always little bit scared about our personal data. Here I suggest you to protect your data with password protected folder. To create this password protected folder we don&#8217;t need any special software or any complex technique.
We just need to create one batch ...]]></description>
			<content:encoded><![CDATA[<p>People are always requesting to use our computer, at that time we are always little bit scared about our personal data. Here I suggest you to protect your data with password protected folder. To create this password protected folder we don&#8217;t need any special software or any complex technique.</p>
<p>We just need to create one batch file from notepad with special code which includes folder name and its password. So let&#8217;s see how to create password protected folder.</p>
<ul>
<li>Copy below      code into notepad and save it as &#8220;anyname&#8221; with <strong>.bat </strong>extension, for example secret.bat</li>
</ul>
<p style="padding-left: 30px;">cls</p>
<p style="padding-left: 30px;">@ECHO OFF</p>
<p style="padding-left: 30px;">title Folder Personal</p>
<p style="padding-left: 30px;">if EXIST &#8220;Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}&#8221; goto UNLOCK</p>
<p style="padding-left: 30px;">if NOT EXIST Personal goto MDLOCKER</p>
<p style="padding-left: 30px;">:CONFIRM</p>
<p style="padding-left: 30px;">echo Are you sure u want to Lock the folder(Y/N)</p>
<p style="padding-left: 30px;">set/p &#8220;cho=&gt;&#8221;</p>
<p style="padding-left: 30px;">if %cho%==Y goto LOCK</p>
<p style="padding-left: 30px;">if %cho%==y goto LOCK</p>
<p style="padding-left: 30px;">if %cho%==n goto END</p>
<p style="padding-left: 30px;">if %cho%==N goto END</p>
<p style="padding-left: 30px;">echo Invalid choice.</p>
<p style="padding-left: 30px;">goto CONFIRM</p>
<p style="padding-left: 30px;">:LOCK</p>
<p style="padding-left: 30px;">ren Personal &#8220;Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}&#8221;</p>
<p style="padding-left: 30px;">attrib +h +s &#8220;Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}&#8221;</p>
<p style="padding-left: 30px;">echo Folder locked</p>
<p style="padding-left: 30px;">goto End</p>
<p style="padding-left: 30px;">:UNLOCK</p>
<p style="padding-left: 30px;">echo Enter password to Unlock folder</p>
<p style="padding-left: 30px;">set/p &#8220;pass=&gt;&#8221;</p>
<p style="padding-left: 30px;">if NOT %pass%==pwd123 goto FAIL</p>
<p style="padding-left: 30px;">attrib -h -s &#8220;Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}&#8221;</p>
<p style="padding-left: 30px;">ren &#8220;Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}&#8221; Personal</p>
<p style="padding-left: 30px;">echo Folder Unlocked successfully</p>
<p style="padding-left: 30px;">goto End</p>
<p style="padding-left: 30px;">:FAIL</p>
<p style="padding-left: 30px;">echo Invalid password</p>
<p style="padding-left: 30px;">goto end</p>
<p style="padding-left: 30px;">:MDLOCKER</p>
<p style="padding-left: 30px;">md Personal</p>
<p style="padding-left: 30px;">echo Personal created successfully</p>
<p style="padding-left: 30px;">goto End</p>
<p style="padding-left: 30px;">:End</p>
<pre></pre>
<p class="MsoNormal">In above code we create folder “Personal” with password “pwd123” as shown in red color. You can give any name and password by editing above file.</p>
<ul>
<li>When you      run this bat file, it will create &#8220;Personal&#8221; folder automatically in the      same location of bat file. Now you can put any data in this folder.</li>
<li>Now run      this bat file again for locking the folder and the default icon of folder      is change to control panel icon.</li>
<li>Now place      this bat file to any secure location to keep your password safe.</li>
<li>When you      want to unlock this &#8220;Personal&#8221; folder, just run this bat file from same      location as folder and it will ask for password which stored in bat file.      After entering the correct password your folder is unlocked.</li>
</ul>
<p>I think is very useful to protect our personal data. What you think?</p>
]]></content:encoded>
			<wfw:commentRss>http://geekytips.com/blog/how-to-create-password-protected-folder-without-any-software//feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

