<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Lock Folders in Windows</title>
	<atom:link href="http://www.ghacks.net/2007/02/05/lock-folders-in-windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ghacks.net/2007/02/05/lock-folders-in-windows/</link>
	<description>A technology blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description>
	<pubDate>Wed, 03 Dec 2008 04:49:05 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
		<item>
		<title>By: Ranjith</title>
		<link>http://www.ghacks.net/2007/02/05/lock-folders-in-windows/#comment-117250</link>
		<dc:creator>Ranjith</dc:creator>
		<pubDate>Sun, 13 May 2007 09:29:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghacks.net/2007/02/05/lock-folders-in-windows/#comment-117250</guid>
		<description>Nice stuff, thanx</description>
		<content:encoded><![CDATA[<p>Nice stuff, thanx</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luke</title>
		<link>http://www.ghacks.net/2007/02/05/lock-folders-in-windows/#comment-88601</link>
		<dc:creator>Luke</dc:creator>
		<pubDate>Thu, 08 Feb 2007 13:40:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghacks.net/2007/02/05/lock-folders-in-windows/#comment-88601</guid>
		<description>Shyborg, you would have to restore privledges for yourself - for example:

&lt;code&gt;cacls FOLDER /E /G Shyborg:F&lt;/code&gt;

The /E switch means that you are editing the privs - not replacing them. If you are a part of a domain you may need to do:

&lt;code&gt;cacls FOLDER /E /G DOMAIN\Shyborg:F&lt;/code&gt;

Best way to do this is to look at another folder's permissions and then replicate them on tour secret folder:

&lt;code&gt;cacls OTHER_FOLDER&lt;/code&gt;

See which users have what permisions and just restore them using separate cacls commands. Don't forget to use /E every time.

Good documentation of cacls is here: http://www.ss64.com/nt/cacls.html</description>
		<content:encoded><![CDATA[<p>Shyborg, you would have to restore privledges for yourself - for example:</p>
<p><code>cacls FOLDER /E /G Shyborg:F</code></p>
<p>The /E switch means that you are editing the privs - not replacing them. If you are a part of a domain you may need to do:</p>
<p><code>cacls FOLDER /E /G DOMAIN\Shyborg:F</code></p>
<p>Best way to do this is to look at another folder&#8217;s permissions and then replicate them on tour secret folder:</p>
<p><code>cacls OTHER_FOLDER</code></p>
<p>See which users have what permisions and just restore them using separate cacls commands. Don&#8217;t forget to use /E every time.</p>
<p>Good documentation of cacls is here: <a href="http://www.ss64.com/nt/cacls.html" rel="nofollow">http://www.ss64.com/nt/cacls.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin</title>
		<link>http://www.ghacks.net/2007/02/05/lock-folders-in-windows/#comment-88558</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Thu, 08 Feb 2007 11:22:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghacks.net/2007/02/05/lock-folders-in-windows/#comment-88558</guid>
		<description>not sure but it could be cacls Folder /P User:F</description>
		<content:encoded><![CDATA[<p>not sure but it could be cacls Folder /P User:F</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shyborg</title>
		<link>http://www.ghacks.net/2007/02/05/lock-folders-in-windows/#comment-88547</link>
		<dc:creator>Shyborg</dc:creator>
		<pubDate>Thu, 08 Feb 2007 10:19:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghacks.net/2007/02/05/lock-folders-in-windows/#comment-88547</guid>
		<description>i used this command line "cacls FOLDER /G Administrator:F" then it locked my whole folder and now how should i Unlock it? I dont have any idea!</description>
		<content:encoded><![CDATA[<p>i used this command line &#8220;cacls FOLDER /G Administrator:F&#8221; then it locked my whole folder and now how should i Unlock it? I dont have any idea!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shyborg</title>
		<link>http://www.ghacks.net/2007/02/05/lock-folders-in-windows/#comment-88533</link>
		<dc:creator>Shyborg</dc:creator>
		<pubDate>Thu, 08 Feb 2007 09:37:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghacks.net/2007/02/05/lock-folders-in-windows/#comment-88533</guid>
		<description>Hey! LUKE.. How can we undo the process???? i cant even access to my folder. wtf..</description>
		<content:encoded><![CDATA[<p>Hey! LUKE.. How can we undo the process???? i cant even access to my folder. wtf..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luke</title>
		<link>http://www.ghacks.net/2007/02/05/lock-folders-in-windows/#comment-87977</link>
		<dc:creator>Luke</dc:creator>
		<pubDate>Tue, 06 Feb 2007 14:15:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghacks.net/2007/02/05/lock-folders-in-windows/#comment-87977</guid>
		<description>I think I found this when I was trying to set up private folders on a WinXP Home box. The  home edition does not have the permissions tab in the file properties dialog, so the only way you can set file permissions for individual users is via cacls.

Not sure where I found it exactly, but one of the best websites that explain all the windows command line commands is http://www.ss64.com/nt/

They cover all the build in stuff, as well as a lot of the stuff that comes in different Microsoft administrator kits and etc.</description>
		<content:encoded><![CDATA[<p>I think I found this when I was trying to set up private folders on a WinXP Home box. The  home edition does not have the permissions tab in the file properties dialog, so the only way you can set file permissions for individual users is via cacls.</p>
<p>Not sure where I found it exactly, but one of the best websites that explain all the windows command line commands is <a href="http://www.ss64.com/nt/" rel="nofollow">http://www.ss64.com/nt/</a></p>
<p>They cover all the build in stuff, as well as a lot of the stuff that comes in different Microsoft administrator kits and etc.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin</title>
		<link>http://www.ghacks.net/2007/02/05/lock-folders-in-windows/#comment-87974</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Tue, 06 Feb 2007 13:55:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghacks.net/2007/02/05/lock-folders-in-windows/#comment-87974</guid>
		<description>This is pretty nice Luke, where did you find the information ?</description>
		<content:encoded><![CDATA[<p>This is pretty nice Luke, where did you find the information ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luke</title>
		<link>http://www.ghacks.net/2007/02/05/lock-folders-in-windows/#comment-87853</link>
		<dc:creator>Luke</dc:creator>
		<pubDate>Tue, 06 Feb 2007 03:48:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghacks.net/2007/02/05/lock-folders-in-windows/#comment-87853</guid>
		<description>How about:

&lt;code&gt;cacls FOLDER /R USER&lt;/code&gt;

This will prevent USER from ever accessing FOLDER. Alternatively you can do:

&lt;code&gt;cacls FOLDER /G Administrator:F&lt;/code&gt;

This will overwrite the default settings and make Administrator the only user allowed to touch it.</description>
		<content:encoded><![CDATA[<p>How about:</p>
<p><code>cacls FOLDER /R USER</code></p>
<p>This will prevent USER from ever accessing FOLDER. Alternatively you can do:</p>
<p><code>cacls FOLDER /G Administrator:F</code></p>
<p>This will overwrite the default settings and make Administrator the only user allowed to touch it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tobey</title>
		<link>http://www.ghacks.net/2007/02/05/lock-folders-in-windows/#comment-87730</link>
		<dc:creator>Tobey</dc:creator>
		<pubDate>Mon, 05 Feb 2007 16:31:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.ghacks.net/2007/02/05/lock-folders-in-windows/#comment-87730</guid>
		<description>Or you can just restrict access to those folders. But that's less effective of course.</description>
		<content:encoded><![CDATA[<p>Or you can just restrict access to those folders. But that&#8217;s less effective of course.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
