<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Recursively remove the hidden attribute on Windows files</title>
	<atom:link href="http://nerdfortress.com/2009/12/18/recursively-remove-the-hidden-attribute-on-windows-files/feed/" rel="self" type="application/rss+xml" />
	<link>http://nerdfortress.com/2009/12/18/recursively-remove-the-hidden-attribute-on-windows-files/</link>
	<description>Esoteric How-to&#039;s, Essays, and Rand();</description>
	<lastBuildDate>Fri, 17 May 2013 08:17:58 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Dave</title>
		<link>http://nerdfortress.com/2009/12/18/recursively-remove-the-hidden-attribute-on-windows-files/#comment-840</link>
		<dc:creator><![CDATA[Dave]]></dc:creator>
		<pubDate>Wed, 10 Apr 2013 06:02:19 +0000</pubDate>
		<guid isPermaLink="false">http://nerdfortress.com/?p=1110#comment-840</guid>
		<description><![CDATA[Is there a way of filtering the type of file, such as *.xml?]]></description>
		<content:encoded><![CDATA[<p>Is there a way of filtering the type of file, such as *.xml?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob</title>
		<link>http://nerdfortress.com/2009/12/18/recursively-remove-the-hidden-attribute-on-windows-files/#comment-804</link>
		<dc:creator><![CDATA[Rob]]></dc:creator>
		<pubDate>Thu, 29 Nov 2012 18:13:34 +0000</pubDate>
		<guid isPermaLink="false">http://nerdfortress.com/?p=1110#comment-804</guid>
		<description><![CDATA[Just FYI you have to remove Hidden and System together on a file that has both.  You cannot remove only the &quot;Hidden&quot; attribute on a file with &quot;System&quot; set, and vice versa:

If a file has only the attribute H then type
attrib -H 

If a file has only the attribute S (don&#039;t think this actually happens) then type
attrib -S 

If the file has both S and A, you MUST use the following, neither of the above will work.
attrib -H -S ]]></description>
		<content:encoded><![CDATA[<p>Just FYI you have to remove Hidden and System together on a file that has both.  You cannot remove only the &#8220;Hidden&#8221; attribute on a file with &#8220;System&#8221; set, and vice versa:</p>
<p>If a file has only the attribute H then type<br />
attrib -H </p>
<p>If a file has only the attribute S (don&#8217;t think this actually happens) then type<br />
attrib -S </p>
<p>If the file has both S and A, you MUST use the following, neither of the above will work.<br />
attrib -H -S </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniil</title>
		<link>http://nerdfortress.com/2009/12/18/recursively-remove-the-hidden-attribute-on-windows-files/#comment-795</link>
		<dc:creator><![CDATA[Daniil]]></dc:creator>
		<pubDate>Wed, 24 Oct 2012 18:32:26 +0000</pubDate>
		<guid isPermaLink="false">http://nerdfortress.com/?p=1110#comment-795</guid>
		<description><![CDATA[Thank you very much! :)]]></description>
		<content:encoded><![CDATA[<p>Thank you very much! <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://nerdfortress.com/2009/12/18/recursively-remove-the-hidden-attribute-on-windows-files/#comment-775</link>
		<dc:creator><![CDATA[Anonymous]]></dc:creator>
		<pubDate>Wed, 12 Sep 2012 06:39:44 +0000</pubDate>
		<guid isPermaLink="false">http://nerdfortress.com/?p=1110#comment-775</guid>
		<description><![CDATA[attrib -H /S says &quot;Not resetting system&quot; file and I don&#039;t want to change the system bit.  Fun.]]></description>
		<content:encoded><![CDATA[<p>attrib -H /S says &#8220;Not resetting system&#8221; file and I don&#8217;t want to change the system bit.  Fun.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Surender</title>
		<link>http://nerdfortress.com/2009/12/18/recursively-remove-the-hidden-attribute-on-windows-files/#comment-769</link>
		<dc:creator><![CDATA[Surender]]></dc:creator>
		<pubDate>Fri, 10 Aug 2012 12:59:38 +0000</pubDate>
		<guid isPermaLink="false">http://nerdfortress.com/?p=1110#comment-769</guid>
		<description><![CDATA[Oh Yes It does work.!!
Now a days everyone wants different s/w tools to do things for them.
What if they are not handy?
Only tips like these come to our rescue.
I knew about attrib  command and have used it few times.
But today when I had to reset the attributes of my pendrive with numerous folder/files/subfolder; I didn&#039;t want to use attrib on each one .
I searched for a tool iReset. Guess what it did not do!!?
It didn&#039;t not reset the contents of the folder I fed it.

Then when I read your tip I recalled that I could have used attrib recursively.
And my work done in a jiffy.
Thanks again]]></description>
		<content:encoded><![CDATA[<p>Oh Yes It does work.!!<br />
Now a days everyone wants different s/w tools to do things for them.<br />
What if they are not handy?<br />
Only tips like these come to our rescue.<br />
I knew about attrib  command and have used it few times.<br />
But today when I had to reset the attributes of my pendrive with numerous folder/files/subfolder; I didn&#8217;t want to use attrib on each one .<br />
I searched for a tool iReset. Guess what it did not do!!?<br />
It didn&#8217;t not reset the contents of the folder I fed it.</p>
<p>Then when I read your tip I recalled that I could have used attrib recursively.<br />
And my work done in a jiffy.<br />
Thanks again</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kleidi</title>
		<link>http://nerdfortress.com/2009/12/18/recursively-remove-the-hidden-attribute-on-windows-files/#comment-717</link>
		<dc:creator><![CDATA[Kleidi]]></dc:creator>
		<pubDate>Tue, 24 Jan 2012 18:36:00 +0000</pubDate>
		<guid isPermaLink="false">http://nerdfortress.com/?p=1110#comment-717</guid>
		<description><![CDATA[Thanks. Works Perfect.
I would also suggest to do the following in order to make also the folders visible

attrib -H -S /S /D]]></description>
		<content:encoded><![CDATA[<p>Thanks. Works Perfect.<br />
I would also suggest to do the following in order to make also the folders visible</p>
<p>attrib -H -S /S /D</p>
]]></content:encoded>
	</item>
</channel>
</rss>
