<?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 for Carl&#039;s blog</title>
	<atom:link href="http://www.css-networks.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.css-networks.com</link>
	<description>Carl&#039;s geek blog</description>
	<lastBuildDate>Fri, 02 Dec 2011 19:58:11 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
	<item>
		<title>Comment on How to automatically detect removable drive&#8217;s assigned letter in backup scripts. by Carl</title>
		<link>http://www.css-networks.com/2011/02/how-to-automatically-detect-removable-drives-assigned-letter-in-backup-scripts/#comment-10335</link>
		<dc:creator>Carl</dc:creator>
		<pubDate>Fri, 02 Dec 2011 19:58:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.css-networks.com/?p=125#comment-10335</guid>
		<description>It seems I forgot to say. You have to create a file called drvid.txt and put that in the root of the removable disk.
When the script is called without parameters, the script calls itself with a drive letter as a parameter, and checks to see if drvid.txt exists on that drive. It does this continually through each of the drive letters in the array (%%a), until drvid.txt is found on that drive. It then sets the variable %DRVID% to that letter, so you can do &quot;backup to %DRVID%&quot; later on in the script.</description>
		<content:encoded><![CDATA[<p>It seems I forgot to say. You have to create a file called drvid.txt and put that in the root of the removable disk.<br />
When the script is called without parameters, the script calls itself with a drive letter as a parameter, and checks to see if drvid.txt exists on that drive. It does this continually through each of the drive letters in the array (%%a), until drvid.txt is found on that drive. It then sets the variable %DRVID% to that letter, so you can do &#8220;backup to %DRVID%&#8221; later on in the script.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to automatically detect removable drive&#8217;s assigned letter in backup scripts. by jon</title>
		<link>http://www.css-networks.com/2011/02/how-to-automatically-detect-removable-drives-assigned-letter-in-backup-scripts/#comment-5590</link>
		<dc:creator>jon</dc:creator>
		<pubDate>Sat, 30 Jul 2011 12:30:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.css-networks.com/?p=125#comment-5590</guid>
		<description>brilliant whats I was looking for to get started. great if it was complete ... but thats ok i will get over it</description>
		<content:encoded><![CDATA[<p>brilliant whats I was looking for to get started. great if it was complete &#8230; but thats ok i will get over it</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on “Publisher cannot complete the operation”, on Windows XP. by Jack Trades</title>
		<link>http://www.css-networks.com/2010/12/%e2%80%9cpublisher-cannot-complete-the-operation%e2%80%9d-on-windows-xp/#comment-5412</link>
		<dc:creator>Jack Trades</dc:creator>
		<pubDate>Tue, 19 Jul 2011 03:57:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.css-networks.com/?p=28#comment-5412</guid>
		<description>Thanks!!! This worked for me on Windows 7 + Publisher 2007</description>
		<content:encoded><![CDATA[<p>Thanks!!! This worked for me on Windows 7 + Publisher 2007</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Recovering from Windows registry hive corruption, the smart way. by Mio</title>
		<link>http://www.css-networks.com/2010/12/recovering-from-windows-registry-hive-corruption-the-clever-or-smart-way/#comment-5404</link>
		<dc:creator>Mio</dc:creator>
		<pubDate>Mon, 18 Jul 2011 13:21:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.css-networks.com/?p=87#comment-5404</guid>
		<description>Worked. You made my day. THANK YOU VERY VERY MUCH!!!</description>
		<content:encoded><![CDATA[<p>Worked. You made my day. THANK YOU VERY VERY MUCH!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to automatically detect removable drive&#8217;s assigned letter in backup scripts. by Ted</title>
		<link>http://www.css-networks.com/2011/02/how-to-automatically-detect-removable-drives-assigned-letter-in-backup-scripts/#comment-5324</link>
		<dc:creator>Ted</dc:creator>
		<pubDate>Wed, 13 Jul 2011 18:54:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.css-networks.com/?p=125#comment-5324</guid>
		<description>I used a pause comment at the end to view what was happening step-by-step, and figure out the problem. How do you specify File or Directory in the script so that you dont have to manually enter it.</description>
		<content:encoded><![CDATA[<p>I used a pause comment at the end to view what was happening step-by-step, and figure out the problem. How do you specify File or Directory in the script so that you dont have to manually enter it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to automatically detect removable drive&#8217;s assigned letter in backup scripts. by Ted</title>
		<link>http://www.css-networks.com/2011/02/how-to-automatically-detect-removable-drives-assigned-letter-in-backup-scripts/#comment-5323</link>
		<dc:creator>Ted</dc:creator>
		<pubDate>Wed, 13 Jul 2011 18:30:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.css-networks.com/?p=125#comment-5323</guid>
		<description>Correction: Copied script to the comment wrong.

@echo off
if %1.==. goto noparams
goto drvid

:noparams

for %%a in (d e f g h i j k l m n o p q R s t u v w x y z) do call %0 %%a

:drvid
echo Checking if backup drive is mounted as drive %1:
if exist %1:\drvid.txt goto found
goto end

:found
Set DRVID=%1
echo Drive found as %DRVID%:
XCOPY C:\test %DRVID%:\test

:end</description>
		<content:encoded><![CDATA[<p>Correction: Copied script to the comment wrong.</p>
<p>@echo off<br />
if %1.==. goto noparams<br />
goto drvid</p>
<p>:noparams</p>
<p>for %%a in (d e f g h i j k l m n o p q R s t u v w x y z) do call %0 %%a</p>
<p>:drvid<br />
echo Checking if backup drive is mounted as drive %1:<br />
if exist %1:\drvid.txt goto found<br />
goto end</p>
<p>:found<br />
Set DRVID=%1<br />
echo Drive found as %DRVID%:<br />
XCOPY C:\test %DRVID%:\test</p>
<p>:end</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to automatically detect removable drive&#8217;s assigned letter in backup scripts. by Ted</title>
		<link>http://www.css-networks.com/2011/02/how-to-automatically-detect-removable-drives-assigned-letter-in-backup-scripts/#comment-5322</link>
		<dc:creator>Ted</dc:creator>
		<pubDate>Wed, 13 Jul 2011 18:28:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.css-networks.com/?p=125#comment-5322</guid>
		<description>Can you explain what the &quot;If exist %1:\drvid.txt&quot; is for? Does this mean it only copies the information to drives that have that file?

I copied the script, changed the backup code, and ran it, but it still didn&#039;t work.

@echo off
if %1.==. goto noparams
goto drvid

:noparams

for %%a in (d e f g h i j k l m n o p q R s t u v w x y z) do call %0 %%a

:drvid
echo Checking if backup drive is mounted as drive %1:
if exist %1:\drvid.txt goto found
goto end

:found
Set DRVID=%1
echo Drive found as %DRVID%:

USE: XCOPY C:\test %DRVID%:\test

:end


any suggestions?</description>
		<content:encoded><![CDATA[<p>Can you explain what the &#8220;If exist %1:\drvid.txt&#8221; is for? Does this mean it only copies the information to drives that have that file?</p>
<p>I copied the script, changed the backup code, and ran it, but it still didn&#8217;t work.</p>
<p>@echo off<br />
if %1.==. goto noparams<br />
goto drvid</p>
<p>:noparams</p>
<p>for %%a in (d e f g h i j k l m n o p q R s t u v w x y z) do call %0 %%a</p>
<p>:drvid<br />
echo Checking if backup drive is mounted as drive %1:<br />
if exist %1:\drvid.txt goto found<br />
goto end</p>
<p>:found<br />
Set DRVID=%1<br />
echo Drive found as %DRVID%:</p>
<p>USE: XCOPY C:\test %DRVID%:\test</p>
<p>:end</p>
<p>any suggestions?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to remove Linux software RAID1 (md raid) on-the-fly so that VMWare Converter works by Marcos</title>
		<link>http://www.css-networks.com/2010/12/how-to-remove-linux-software-raid1-md-raid-on-the-fly-so-that-vmware-converter-works/#comment-5021</link>
		<dc:creator>Marcos</dc:creator>
		<pubDate>Wed, 29 Jun 2011 12:07:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.css-networks.com/?p=32#comment-5021</guid>
		<description>Great!
Thanks for sharing. That helped me a lot!</description>
		<content:encoded><![CDATA[<p>Great!<br />
Thanks for sharing. That helped me a lot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Recovering from Windows registry hive corruption, the smart way. by Phil Barrett</title>
		<link>http://www.css-networks.com/2010/12/recovering-from-windows-registry-hive-corruption-the-clever-or-smart-way/#comment-4907</link>
		<dc:creator>Phil Barrett</dc:creator>
		<pubDate>Fri, 24 Jun 2011 09:01:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.css-networks.com/?p=87#comment-4907</guid>
		<description>THANK YOU SO MUCH!!!   I was worried to say the least. Already spent £85 on a &#039;just-in-case&#039; online tech support (Virgin) who were going to take me through RE-INSTALLING WINDOWS..... So I went for a knowledge trawl and found your article. Worked a treat!</description>
		<content:encoded><![CDATA[<p>THANK YOU SO MUCH!!!   I was worried to say the least. Already spent £85 on a &#8216;just-in-case&#8217; online tech support (Virgin) who were going to take me through RE-INSTALLING WINDOWS&#8230;.. So I went for a knowledge trawl and found your article. Worked a treat!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Recovering from Windows registry hive corruption, the smart way. by AF</title>
		<link>http://www.css-networks.com/2010/12/recovering-from-windows-registry-hive-corruption-the-clever-or-smart-way/#comment-4586</link>
		<dc:creator>AF</dc:creator>
		<pubDate>Tue, 07 Jun 2011 18:35:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.css-networks.com/?p=87#comment-4586</guid>
		<description>I too have the same problem .. if any one know of a fix .. please let us know .. thanks</description>
		<content:encoded><![CDATA[<p>I too have the same problem .. if any one know of a fix .. please let us know .. thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>

