<?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: Command line options for XCOPY	</title>
	<atom:link href="https://www.itfixed.com/2009/04/command-line-options-for-xcopy/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.itfixed.com/2009/04/command-line-options-for-xcopy/</link>
	<description>Complete Home and Small Office IT Services</description>
	<lastBuildDate>Sat, 12 Dec 2009 21:21:31 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>
		By: Anonymous		</title>
		<link>https://www.itfixed.com/2009/04/command-line-options-for-xcopy/#comment-91</link>

		<dc:creator><![CDATA[Anonymous]]></dc:creator>
		<pubDate>Sat, 12 Dec 2009 21:21:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.itfixed.com/2009/04/command-line-options-for-xcopy/#comment-91</guid>

					<description><![CDATA[emm. attractive thread!]]></description>
			<content:encoded><![CDATA[<p>emm. attractive thread!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Scott Mckeown		</title>
		<link>https://www.itfixed.com/2009/04/command-line-options-for-xcopy/#comment-114</link>

		<dc:creator><![CDATA[Scott Mckeown]]></dc:creator>
		<pubDate>Fri, 10 Apr 2009 19:02:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.itfixed.com/2009/04/command-line-options-for-xcopy/#comment-114</guid>

					<description><![CDATA[See if this helps&lt;br/&gt;&lt;br/&gt;FOR /F “TOKENS=1* DELIMS= ” %%A IN (’DATE/T’) DO SET CDATE=%%B&lt;br/&gt;FOR /F “TOKENS=1,2 eol=/ DELIMS=/ ” %%A IN (’DATE/T’) DO SET mm=%%B&lt;br/&gt;FOR /F “TOKENS=1,2 DELIMS=/ eol=/” %%A IN (’echo %CDATE%’) DO SET dd=%%B&lt;br/&gt;FOR /F “TOKENS=2,3 DELIMS=/ ” %%A IN (’echo %CDATE%’) DO SET yyyy=%%B&lt;br/&gt;SET date=%mm%%dd%%yyyy% &lt;br/&gt;&lt;br/&gt;Then you can use the %date variable in your script.&lt;br/&gt;&lt;br/&gt;Scott]]></description>
			<content:encoded><![CDATA[<p>See if this helps</p>
<p>FOR /F “TOKENS=1* DELIMS= ” %%A IN (’DATE/T’) DO SET CDATE=%%B<br />FOR /F “TOKENS=1,2 eol=/ DELIMS=/ ” %%A IN (’DATE/T’) DO SET mm=%%B<br />FOR /F “TOKENS=1,2 DELIMS=/ eol=/” %%A IN (’echo %CDATE%’) DO SET dd=%%B<br />FOR /F “TOKENS=2,3 DELIMS=/ ” %%A IN (’echo %CDATE%’) DO SET yyyy=%%B<br />SET date=%mm%%dd%%yyyy% </p>
<p>Then you can use the %date variable in your script.</p>
<p>Scott</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: henry		</title>
		<link>https://www.itfixed.com/2009/04/command-line-options-for-xcopy/#comment-115</link>

		<dc:creator><![CDATA[henry]]></dc:creator>
		<pubDate>Fri, 10 Apr 2009 16:39:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.itfixed.com/2009/04/command-line-options-for-xcopy/#comment-115</guid>

					<description><![CDATA[i figured out what i was doing wrong.  my command line switch was /d:  and should have been /d  .  then it does work the way i expected.  &lt;br/&gt;now i&#039;m trying to figure out how to calculate the date parameter in a batch file so that i can run from windows xp task scheduler.  anybody know how to do that ?]]></description>
			<content:encoded><![CDATA[<p>i figured out what i was doing wrong.  my command line switch was /d:  and should have been /d  .  then it does work the way i expected.  <br />now i&#8217;m trying to figure out how to calculate the date parameter in a batch file so that i can run from windows xp task scheduler.  anybody know how to do that ?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Scott Mckeown		</title>
		<link>https://www.itfixed.com/2009/04/command-line-options-for-xcopy/#comment-116</link>

		<dc:creator><![CDATA[Scott Mckeown]]></dc:creator>
		<pubDate>Fri, 10 Apr 2009 01:25:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.itfixed.com/2009/04/command-line-options-for-xcopy/#comment-116</guid>

					<description><![CDATA[Did you try to add the date after the /d: switch? Something like&lt;br/&gt;&lt;br/&gt;xcopy /d:1-1-09 sourcefilename destfilename&lt;br/&gt;&lt;br/&gt;I beleive the /d: needs a date to function properly.]]></description>
			<content:encoded><![CDATA[<p>Did you try to add the date after the /d: switch? Something like</p>
<p>xcopy /d:1-1-09 sourcefilename destfilename</p>
<p>I beleive the /d: needs a date to function properly.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: henry		</title>
		<link>https://www.itfixed.com/2009/04/command-line-options-for-xcopy/#comment-117</link>

		<dc:creator><![CDATA[henry]]></dc:creator>
		<pubDate>Fri, 10 Apr 2009 00:33:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.itfixed.com/2009/04/command-line-options-for-xcopy/#comment-117</guid>

					<description><![CDATA[tried this item and the utility reports &#039;invalid switch - /d:&#039;&lt;br/&gt;&lt;br/&gt;  /D:m-d-y     Copies files changed on or after the specified date. If no date is given, copies only those files whose source time is newer than the destination time.&lt;br/&gt;&lt;br/&gt;i was looking for a way to pass the current date to the scheduled task in windows xp]]></description>
			<content:encoded><![CDATA[<p>tried this item and the utility reports &#8216;invalid switch &#8211; /d:&#8217;</p>
<p>  /D:m-d-y     Copies files changed on or after the specified date. If no date is given, copies only those files whose source time is newer than the destination time.</p>
<p>i was looking for a way to pass the current date to the scheduled task in windows xp</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
