<?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: Automating Outlook&#8217;s Inbox Repair Tool (ScanPST)</title>
	<atom:link href="http://opindian.com/blog/2008/09/02/automating-outlooks-inbox-repair-tool-scanpst/feed/" rel="self" type="application/rss+xml" />
	<link>http://opindian.com/blog/2008/09/02/automating-outlooks-inbox-repair-tool-scanpst/</link>
	<description>One Indian&#039;s Opinion</description>
	<lastBuildDate>Sat, 17 Jul 2010 16:59:07 -0400</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1-beta</generator>
	<item>
		<title>By: Mark</title>
		<link>http://opindian.com/blog/2008/09/02/automating-outlooks-inbox-repair-tool-scanpst/comment-page-1/#comment-199</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Sun, 11 Jul 2010 19:46:31 +0000</pubDate>
		<guid isPermaLink="false">http://opindian.com/blog/?p=236#comment-199</guid>
		<description>I like your second solution (text file with names of PST); this is something I would probably run once or twice a year as I DO perform the occasional search in those files for some email or attachment (and thus a risk for corruption).&lt;br&gt;&lt;br&gt;Thank you for your insight and clever solutions!&lt;br&gt;&lt;br&gt;Mark</description>
		<content:encoded><![CDATA[<p>I like your second solution (text file with names of PST); this is something I would probably run once or twice a year as I DO perform the occasional search in those files for some email or attachment (and thus a risk for corruption).</p>
<p>Thank you for your insight and clever solutions!</p>
<p>Mark</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://opindian.com/blog/2008/09/02/automating-outlooks-inbox-repair-tool-scanpst/comment-page-1/#comment-213</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Sun, 11 Jul 2010 18:46:00 +0000</pubDate>
		<guid isPermaLink="false">http://opindian.com/blog/?p=236#comment-213</guid>
		<description>I like your second solution (text file with names of PST); this is something I would probably run once or twice a year as I DO perform the occasional search in those files for some email or attachment (and thus a risk for corruption).

Thank you for your insight and clever solutions!

Mark</description>
		<content:encoded><![CDATA[<p>I like your second solution (text file with names of PST); this is something I would probably run once or twice a year as I DO perform the occasional search in those files for some email or attachment (and thus a risk for corruption).</p>
<p>Thank you for your insight and clever solutions!</p>
<p>Mark</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ahpatel</title>
		<link>http://opindian.com/blog/2008/09/02/automating-outlooks-inbox-repair-tool-scanpst/comment-page-1/#comment-198</link>
		<dc:creator>ahpatel</dc:creator>
		<pubDate>Sun, 11 Jul 2010 17:38:16 +0000</pubDate>
		<guid isPermaLink="false">http://opindian.com/blog/?p=236#comment-198</guid>
		<description>You can have multiple locations on the same cmdscan line... So your cmdscan statement can look like:&lt;br&gt;cmdscan D:DOCSOUTLOOKSCANPST.exe D:DOCSOUTLOOKcovetMay.pst C:Location2Outlook*.pst D:Location3*.pst &gt; D:DOCSOUTLOOKautopst.tmp&lt;br&gt;&lt;br&gt;The only issue with that is that if any one of your 37 files have errors, the script would rescan ALL of them!&lt;br&gt;&lt;br&gt;Alternatively, you could create a file that lists all 37 PSTs and then use each line as an input into a for loop that runs 37 times.  And, if any instance of the loop sends the &quot;Error Found&quot; message, rerun that same line before moving to the next PST.&lt;br&gt;&lt;br&gt;But, honestly, it you don&#039;t regularly use/open all 37 PSTs, it seems unnecessary to make them part of your regular scans.  I have a dozen old PSTs backed up as well, but I hardly ever scan them because I don&#039;t keep them open in Outlook and seldom reference them.</description>
		<content:encoded><![CDATA[<p>You can have multiple locations on the same cmdscan line&#8230; So your cmdscan statement can look like:<br />cmdscan D:DOCSOUTLOOKSCANPST.exe D:DOCSOUTLOOKcovetMay.pst C:Location2Outlook*.pst D:Location3*.pst &gt; D:DOCSOUTLOOKautopst.tmp</p>
<p>The only issue with that is that if any one of your 37 files have errors, the script would rescan ALL of them!</p>
<p>Alternatively, you could create a file that lists all 37 PSTs and then use each line as an input into a for loop that runs 37 times.  And, if any instance of the loop sends the &#8220;Error Found&#8221; message, rerun that same line before moving to the next PST.</p>
<p>But, honestly, it you don&#39;t regularly use/open all 37 PSTs, it seems unnecessary to make them part of your regular scans.  I have a dozen old PSTs backed up as well, but I hardly ever scan them because I don&#39;t keep them open in Outlook and seldom reference them.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://opindian.com/blog/2008/09/02/automating-outlooks-inbox-repair-tool-scanpst/comment-page-1/#comment-197</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Sun, 11 Jul 2010 17:05:41 +0000</pubDate>
		<guid isPermaLink="false">http://opindian.com/blog/?p=236#comment-197</guid>
		<description>I have 37 PST files going back to early days of Outlook.  As someone else has pointed out, if PST isn&#039;t in default location, wildcard (*.PST) doesn&#039;t work in batchfile.  So my options are move PST back to default folder  (ugh!) or do 37 different errorlevel loops.... unless you provide more inspiration! &lt;G&gt;&lt;br&gt;Thanks for your help and guidance.&lt;br&gt;Mark</description>
		<content:encoded><![CDATA[<p>I have 37 PST files going back to early days of Outlook.  As someone else has pointed out, if PST isn&#39;t in default location, wildcard (*.PST) doesn&#39;t work in batchfile.  So my options are move PST back to default folder  (ugh!) or do 37 different errorlevel loops&#8230;. unless you provide more inspiration! &lt;G&gt;<br />Thanks for your help and guidance.<br />Mark</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ahpatel</title>
		<link>http://opindian.com/blog/2008/09/02/automating-outlooks-inbox-repair-tool-scanpst/comment-page-1/#comment-214</link>
		<dc:creator>ahpatel</dc:creator>
		<pubDate>Sun, 11 Jul 2010 16:38:00 +0000</pubDate>
		<guid isPermaLink="false">http://opindian.com/blog/?p=236#comment-214</guid>
		<description>You can have multiple locations on the same cmdscan line... So your cmdscan statement can look like:&lt;br&gt;cmdscan D:DOCSOUTLOOKSCANPST.exe D:DOCSOUTLOOKcovetMay.pst C:Location2Outlook*.pst D:Location3*.pst &gt; D:DOCSOUTLOOKautopst.tmp&lt;br&gt;&lt;br&gt;The only issue with that is that if any one of your 37 files have errors, the script would rescan ALL of them!&lt;br&gt;&lt;br&gt;Alternatively, you could create a file that lists all 37 PSTs and then use each line as an input into a for loop that runs 37 times.  And, if any instance of the loop sends the &quot;Error Found&quot; message, rerun that same line before moving to the next PST.&lt;br&gt;&lt;br&gt;But, honestly, it you don&#039;t regularly use/open all 37 PSTs, it seems unnecessary to make them part of your regular scans.  I have a dozen old PSTs backed up as well, but I hardly ever scan them because I don&#039;t keep them open in Outlook and seldom reference them.</description>
		<content:encoded><![CDATA[<p>You can have multiple locations on the same cmdscan line&#8230; So your cmdscan statement can look like:<br />cmdscan D:DOCSOUTLOOKSCANPST.exe D:DOCSOUTLOOKcovetMay.pst C:Location2Outlook*.pst D:Location3*.pst > D:DOCSOUTLOOKautopst.tmp</p>
<p>The only issue with that is that if any one of your 37 files have errors, the script would rescan ALL of them!</p>
<p>Alternatively, you could create a file that lists all 37 PSTs and then use each line as an input into a for loop that runs 37 times.  And, if any instance of the loop sends the &#8220;Error Found&#8221; message, rerun that same line before moving to the next PST.</p>
<p>But, honestly, it you don&#8217;t regularly use/open all 37 PSTs, it seems unnecessary to make them part of your regular scans.  I have a dozen old PSTs backed up as well, but I hardly ever scan them because I don&#8217;t keep them open in Outlook and seldom reference them.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ahpatel</title>
		<link>http://opindian.com/blog/2008/09/02/automating-outlooks-inbox-repair-tool-scanpst/comment-page-1/#comment-196</link>
		<dc:creator>ahpatel</dc:creator>
		<pubDate>Sun, 11 Jul 2010 16:14:09 +0000</pubDate>
		<guid isPermaLink="false">http://opindian.com/blog/?p=236#comment-196</guid>
		<description>Thanks for the update Mark.  I will edit my script and remove the ().&lt;br&gt;&lt;br&gt;Let me know if you think of any additional optimizations/enhancements!</description>
		<content:encoded><![CDATA[<p>Thanks for the update Mark.  I will edit my script and remove the ().</p>
<p>Let me know if you think of any additional optimizations/enhancements!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://opindian.com/blog/2008/09/02/automating-outlooks-inbox-repair-tool-scanpst/comment-page-1/#comment-215</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Sun, 11 Jul 2010 16:05:00 +0000</pubDate>
		<guid isPermaLink="false">http://opindian.com/blog/?p=236#comment-215</guid>
		<description>I have 37 PST files going back to early days of Outlook.  As someone else has pointed out, if PST isn&#039;t in default location, wildcard (*.PST) doesn&#039;t work in batchfile.  So my options are move PST back to default folder  (ugh!) or do 37 different errorlevel loops.... unless you provide more inspiration! &lt;G&gt;
Thanks for your help and guidance.
Mark</description>
		<content:encoded><![CDATA[<p>I have 37 PST files going back to early days of Outlook.  As someone else has pointed out, if PST isn&#8217;t in default location, wildcard (*.PST) doesn&#8217;t work in batchfile.  So my options are move PST back to default folder  (ugh!) or do 37 different errorlevel loops&#8230;. unless you provide more inspiration! <g><br />
Thanks for your help and guidance.<br />
Mark</g></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://opindian.com/blog/2008/09/02/automating-outlooks-inbox-repair-tool-scanpst/comment-page-1/#comment-195</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Sun, 11 Jul 2010 16:02:20 +0000</pubDate>
		<guid isPermaLink="false">http://opindian.com/blog/?p=236#comment-195</guid>
		<description>FIXED:&lt;br&gt;IF %errorlevel% == 0 GOTO RESCAN</description>
		<content:encoded><![CDATA[<p>FIXED:<br />IF %errorlevel% == 0 GOTO RESCAN</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ahpatel</title>
		<link>http://opindian.com/blog/2008/09/02/automating-outlooks-inbox-repair-tool-scanpst/comment-page-1/#comment-216</link>
		<dc:creator>ahpatel</dc:creator>
		<pubDate>Sun, 11 Jul 2010 15:14:00 +0000</pubDate>
		<guid isPermaLink="false">http://opindian.com/blog/?p=236#comment-216</guid>
		<description>Thanks for the update Mark.  I will edit my script and remove the ().

Let me know if you think of any additional optimizations/enhancements!</description>
		<content:encoded><![CDATA[<p>Thanks for the update Mark.  I will edit my script and remove the ().</p>
<p>Let me know if you think of any additional optimizations/enhancements!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://opindian.com/blog/2008/09/02/automating-outlooks-inbox-repair-tool-scanpst/comment-page-1/#comment-217</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Sun, 11 Jul 2010 15:02:00 +0000</pubDate>
		<guid isPermaLink="false">http://opindian.com/blog/?p=236#comment-217</guid>
		<description>FIXED:
IF %errorlevel% == 0 GOTO RESCAN
</description>
		<content:encoded><![CDATA[<p>FIXED:<br />
IF %errorlevel% == 0 GOTO RESCAN</p>
]]></content:encoded>
	</item>
</channel>
</rss>
