<?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/"
		>
<channel>
	<title>Comments on: Deltree Command Replacement in Windows 2000 or Windows XP</title>
	<atom:link href="http://www.raymond.cc/blog/deltree-command-replacement-in-windows-2000-or-windows-xp/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.raymond.cc/blog/deltree-command-replacement-in-windows-2000-or-windows-xp/</link>
	<description>Daily updated news of useful advanced computer tips and tricks</description>
	<lastBuildDate>Mon, 23 Jan 2012 16:29:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Ryan</title>
		<link>http://www.raymond.cc/blog/deltree-command-replacement-in-windows-2000-or-windows-xp/#comment-510285</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Tue, 26 Apr 2011 01:11:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.raymond.cc/blog/archives/2007/09/24/deltree-command-replacement-in-windows-2000-or-windows-xp/#comment-510285</guid>
		<description>Thanks, man.

I&#039;m so lazy and set in my ways, I made a deltree.cmd file and put in my path.  The super-simple 2 liner contains:
@echo off
rd /s %1 %2

this way you can use the quiet mode or not, depending on how confident you are.  Thx again.</description>
		<content:encoded><![CDATA[<p>Thanks, man.</p>
<p>I&#8217;m so lazy and set in my ways, I made a deltree.cmd file and put in my path.  The super-simple 2 liner contains:<br />
@echo off<br />
rd /s %1 %2</p>
<p>this way you can use the quiet mode or not, depending on how confident you are.  Thx again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David T.</title>
		<link>http://www.raymond.cc/blog/deltree-command-replacement-in-windows-2000-or-windows-xp/#comment-505659</link>
		<dc:creator>David T.</dc:creator>
		<pubDate>Fri, 21 Jan 2011 18:21:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.raymond.cc/blog/archives/2007/09/24/deltree-command-replacement-in-windows-2000-or-windows-xp/#comment-505659</guid>
		<description>To clean up the &quot;TEMP&quot; folder during shutdown i use this two command in a gpo logoff script (it can be the local gpo for a stand alone computer)

@FOR /D %%i IN (&quot;%TEMP%\*.*&quot;) DO RMDIR /S /Q &quot;%%i\&quot;
@DEL /F /S /Q &quot;%TEMP%&quot;

Thx to David H. for the base command. I have just add the double quote &quot;&quot; in case of spaces in names of folders or files</description>
		<content:encoded><![CDATA[<p>To clean up the &#8220;TEMP&#8221; folder during shutdown i use this two command in a gpo logoff script (it can be the local gpo for a stand alone computer)</p>
<p>@FOR /D %%i IN (&#8220;%TEMP%\*.*&#8221;) DO RMDIR /S /Q &#8220;%%i\&#8221;<br />
@DEL /F /S /Q &#8220;%TEMP%&#8221;</p>
<p>Thx to David H. for the base command. I have just add the double quote &#8220;&#8221; in case of spaces in names of folders or files</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://www.raymond.cc/blog/deltree-command-replacement-in-windows-2000-or-windows-xp/#comment-496389</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Fri, 12 Nov 2010 17:24:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.raymond.cc/blog/archives/2007/09/24/deltree-command-replacement-in-windows-2000-or-windows-xp/#comment-496389</guid>
		<description>Unfortuantely though in my experience you do not want to delete the directory itself only the contents.

e.g.  I want to delete all files and subdirectories within c:\temp but i do not want to delete c:\temp.

with deltree it would have been deltree c:\temp\*.*

but now i would have to type:
RD c:\temp /s
MD c:\temp

ok i could write a batch file called deltree.bat and place it in my system path  but i would prefer to use the original deltree, where has it gone and why??? its been about since MSDOS 5 after it was pinched from 4DOS.</description>
		<content:encoded><![CDATA[<p>Unfortuantely though in my experience you do not want to delete the directory itself only the contents.</p>
<p>e.g.  I want to delete all files and subdirectories within c:\temp but i do not want to delete c:\temp.</p>
<p>with deltree it would have been deltree c:\temp\*.*</p>
<p>but now i would have to type:<br />
RD c:\temp /s<br />
MD c:\temp</p>
<p>ok i could write a batch file called deltree.bat and place it in my system path  but i would prefer to use the original deltree, where has it gone and why??? its been about since MSDOS 5 after it was pinched from 4DOS.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simple Dimple</title>
		<link>http://www.raymond.cc/blog/deltree-command-replacement-in-windows-2000-or-windows-xp/#comment-480303</link>
		<dc:creator>Simple Dimple</dc:creator>
		<pubDate>Wed, 23 Jun 2010 07:18:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.raymond.cc/blog/archives/2007/09/24/deltree-command-replacement-in-windows-2000-or-windows-xp/#comment-480303</guid>
		<description>That was a quick help dude.</description>
		<content:encoded><![CDATA[<p>That was a quick help dude.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raj</title>
		<link>http://www.raymond.cc/blog/deltree-command-replacement-in-windows-2000-or-windows-xp/#comment-477525</link>
		<dc:creator>Raj</dc:creator>
		<pubDate>Fri, 28 May 2010 13:40:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.raymond.cc/blog/archives/2007/09/24/deltree-command-replacement-in-windows-2000-or-windows-xp/#comment-477525</guid>
		<description>Thanks Raymond</description>
		<content:encoded><![CDATA[<p>Thanks Raymond</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: marked</title>
		<link>http://www.raymond.cc/blog/deltree-command-replacement-in-windows-2000-or-windows-xp/#comment-474786</link>
		<dc:creator>marked</dc:creator>
		<pubDate>Tue, 04 May 2010 02:49:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.raymond.cc/blog/archives/2007/09/24/deltree-command-replacement-in-windows-2000-or-windows-xp/#comment-474786</guid>
		<description>Moderator : Please run a spell checker over corruption weird meant rmdir Thanks</description>
		<content:encoded><![CDATA[<p>Moderator : Please run a spell checker over corruption weird meant rmdir Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: marked</title>
		<link>http://www.raymond.cc/blog/deltree-command-replacement-in-windows-2000-or-windows-xp/#comment-474782</link>
		<dc:creator>marked</dc:creator>
		<pubDate>Tue, 04 May 2010 02:42:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.raymond.cc/blog/archives/2007/09/24/deltree-command-replacement-in-windows-2000-or-windows-xp/#comment-474782</guid>
		<description>Hi, Good old Ubuntu Linux. I was able to delete an XP folder over my home network. The XP folder was a local Hardrive in NTFS format and had exceeded its file path length. A wierd corupption ment every time I renamed a long folder name it just kept on creating new repeat subfolders. No tinkering in Dos with rd or remdir would work. Linux just wiped the offending folder after I had copied the files I wanted to keep. Could have used a linux boot CD to achive same, but already had the drive accessible over the network. Of course you need to be cautious as this will wipe any folder on the windows drive with similar ease.</description>
		<content:encoded><![CDATA[<p>Hi, Good old Ubuntu Linux. I was able to delete an XP folder over my home network. The XP folder was a local Hardrive in NTFS format and had exceeded its file path length. A wierd corupption ment every time I renamed a long folder name it just kept on creating new repeat subfolders. No tinkering in Dos with rd or remdir would work. Linux just wiped the offending folder after I had copied the files I wanted to keep. Could have used a linux boot CD to achive same, but already had the drive accessible over the network. Of course you need to be cautious as this will wipe any folder on the windows drive with similar ease.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: basic
Database Caching 1/5 queries in 0.002 seconds using disk: basic
Object Caching 272/273 objects using disk: basic
Content Delivery Network via cdn.raymond.cc

Served from: www.raymond.cc @ 2012-02-11 02:01:24 -->
