<?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: Robocopy Log Scanner</title>
	<atom:link href="http://korel.com.au/vbs/robocopy-log-scanner/feed/" rel="self" type="application/rss+xml" />
	<link>http://korel.com.au</link>
	<description>techné</description>
	<lastBuildDate>Tue, 29 Nov 2011 04:37:57 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: sokam</title>
		<link>http://korel.com.au/vbs/robocopy-log-scanner/comment-page-1/#comment-581</link>
		<dc:creator>sokam</dc:creator>
		<pubDate>Mon, 18 May 2009 13:59:17 +0000</pubDate>
		<guid isPermaLink="false">http://korel.com.au/?page_id=100#comment-581</guid>
		<description>Thanks for your earlier response.

My log file is about 30MB plus can you please let me know how to add
a line in the script to zip the log file prior to attaching it for the email. 
I think Zim did mentioned of doing this but no example was provided.
Thanks in advance.</description>
		<content:encoded><![CDATA[<p>Thanks for your earlier response.</p>
<p>My log file is about 30MB plus can you please let me know how to add<br />
a line in the script to zip the log file prior to attaching it for the email.<br />
I think Zim did mentioned of doing this but no example was provided.<br />
Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://korel.com.au/vbs/robocopy-log-scanner/comment-page-1/#comment-570</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Sat, 16 May 2009 04:53:22 +0000</pubDate>
		<guid isPermaLink="false">http://korel.com.au/?page_id=100#comment-570</guid>
		<description>Sokam

Because the actual robocopy job hasn&#039;t failed on any files, there won&#039;t be an error logged.

Its up to the application to alert you of any failures on its part when generating backup files...

Furthermore.. the /MIR switch can be dangerous in these situations, because it mirrors the data from the source to the destination... that&#039;s why we should always robocopy to a destination that then gets backed up and adequately retained.</description>
		<content:encoded><![CDATA[<p>Sokam</p>
<p>Because the actual robocopy job hasn&#8217;t failed on any files, there won&#8217;t be an error logged.</p>
<p>Its up to the application to alert you of any failures on its part when generating backup files&#8230;</p>
<p>Furthermore.. the /MIR switch can be dangerous in these situations, because it mirrors the data from the source to the destination&#8230; that&#8217;s why we should always robocopy to a destination that then gets backed up and adequately retained.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sokam</title>
		<link>http://korel.com.au/vbs/robocopy-log-scanner/comment-page-1/#comment-562</link>
		<dc:creator>Sokam</dc:creator>
		<pubDate>Thu, 14 May 2009 13:57:45 +0000</pubDate>
		<guid isPermaLink="false">http://korel.com.au/?page_id=100#comment-562</guid>
		<description>THanks once more for the useful script - it has saved me several times.
But I noticed that on one occasion the server which was supposed to create the file which will be robocopied to my external disk failed. So the robocopy job had nothing to copy over - in other words it skipped the file. But an email was still sent saying the the robocopy was successful. So there a way to change the script to say if there are skipped files flag them?

Thanks</description>
		<content:encoded><![CDATA[<p>THanks once more for the useful script &#8211; it has saved me several times.<br />
But I noticed that on one occasion the server which was supposed to create the file which will be robocopied to my external disk failed. So the robocopy job had nothing to copy over &#8211; in other words it skipped the file. But an email was still sent saying the the robocopy was successful. So there a way to change the script to say if there are skipped files flag them?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zim</title>
		<link>http://korel.com.au/vbs/robocopy-log-scanner/comment-page-1/#comment-494</link>
		<dc:creator>Zim</dc:creator>
		<pubDate>Fri, 01 May 2009 23:37:23 +0000</pubDate>
		<guid isPermaLink="false">http://korel.com.au/?page_id=100#comment-494</guid>
		<description>Thank you very much, this is a very useful script. I added a line to zip the log file (my log file was upwards of 25 megs / 2M files) prior to attaching it for the email.</description>
		<content:encoded><![CDATA[<p>Thank you very much, this is a very useful script. I added a line to zip the log file (my log file was upwards of 25 megs / 2M files) prior to attaching it for the email.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kalam</title>
		<link>http://korel.com.au/vbs/robocopy-log-scanner/comment-page-1/#comment-450</link>
		<dc:creator>kalam</dc:creator>
		<pubDate>Fri, 03 Apr 2009 14:04:16 +0000</pubDate>
		<guid isPermaLink="false">http://korel.com.au/?page_id=100#comment-450</guid>
		<description>Hi,
I have a request to parse multiple robocopy log files stored in a folder for errorlevels using vbscript. Then write comments accordingly to an output file. I am able to loop through the folder for the files and write to an output file. However, I am not sure how I can capture the following errorlevel or errrocode from the log and process the comments accordingly. I have never done any vbscript in my life until two weeks ago. Any help on this will be greatly appreciated.

if log has errorlevel 16 write &quot;FATAL ERROR&quot; to output file
if log has errorlevel 8 write &quot;FAILED COPIES&quot; to output file
if log has errorlevel 4 write &quot;MISMATCHES&quot; to output file
if log has errorlevel 2 write &quot;EXTRA FILES&quot; to output file
if log has errorlevel 1 write &quot;OK COPY&quot; to output file
if log has errorlevel 0 write &quot;NO CAHNGE&quot; to output file

thank you.</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I have a request to parse multiple robocopy log files stored in a folder for errorlevels using vbscript. Then write comments accordingly to an output file. I am able to loop through the folder for the files and write to an output file. However, I am not sure how I can capture the following errorlevel or errrocode from the log and process the comments accordingly. I have never done any vbscript in my life until two weeks ago. Any help on this will be greatly appreciated.</p>
<p>if log has errorlevel 16 write &#8220;FATAL ERROR&#8221; to output file<br />
if log has errorlevel 8 write &#8220;FAILED COPIES&#8221; to output file<br />
if log has errorlevel 4 write &#8220;MISMATCHES&#8221; to output file<br />
if log has errorlevel 2 write &#8220;EXTRA FILES&#8221; to output file<br />
if log has errorlevel 1 write &#8220;OK COPY&#8221; to output file<br />
if log has errorlevel 0 write &#8220;NO CAHNGE&#8221; to output file</p>
<p>thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Per</title>
		<link>http://korel.com.au/vbs/robocopy-log-scanner/comment-page-1/#comment-361</link>
		<dc:creator>Per</dc:creator>
		<pubDate>Thu, 12 Mar 2009 15:15:23 +0000</pubDate>
		<guid isPermaLink="false">http://korel.com.au/?page_id=100#comment-361</guid>
		<description>It would be nice if the script also included a date when the log was created so that one can verify that its realy the right job and not some old one.</description>
		<content:encoded><![CDATA[<p>It would be nice if the script also included a date when the log was created so that one can verify that its realy the right job and not some old one.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://korel.com.au/vbs/robocopy-log-scanner/comment-page-1/#comment-140</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Fri, 09 Jan 2009 23:30:49 +0000</pubDate>
		<guid isPermaLink="false">http://korel.com.au/?page_id=100#comment-140</guid>
		<description>Joey

Its a bit strange... i think that code is required if the SMTP server is not on the local machine...

I recon they just use those internet addresses to declare the function... the machine running the script wouldn&#039;t need to access them...

Good info here... http://www.paulsadowski.com/WSH/cdo.htm</description>
		<content:encoded><![CDATA[<p>Joey</p>
<p>Its a bit strange&#8230; i think that code is required if the SMTP server is not on the local machine&#8230;</p>
<p>I recon they just use those internet addresses to declare the function&#8230; the machine running the script wouldn&#8217;t need to access them&#8230;</p>
<p>Good info here&#8230; <a href="http://www.paulsadowski.com/WSH/cdo.htm" rel="nofollow">http://www.paulsadowski.com/WSH/cdo.htm</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joey</title>
		<link>http://korel.com.au/vbs/robocopy-log-scanner/comment-page-1/#comment-138</link>
		<dc:creator>Joey</dc:creator>
		<pubDate>Fri, 09 Jan 2009 13:53:33 +0000</pubDate>
		<guid isPermaLink="false">http://korel.com.au/?page_id=100#comment-138</guid>
		<description>I thank you kindly for this useful script!
Exactly what I was looking for.

I have a question though,
In the code you&#039;ll find this:
[quote]&#039;-- Email Send --
Const cdoSendUsingMethod = _
&quot;http://schemas.microsoft.com/cdo/configuration/sendusing&quot;, _
cdoSendUsingPort = 2, _
cdoSMTPServer = _
&quot;http://schemas.microsoft.com/cdo/configuration/smtpserver&quot;
[/quote]

What does it do? it describes as email send, but why exactly are the internet adresses of Microsoft in there?
Does it require internet connection even if you send in through intranet?

Thanks!</description>
		<content:encoded><![CDATA[<p>I thank you kindly for this useful script!<br />
Exactly what I was looking for.</p>
<p>I have a question though,<br />
In the code you&#8217;ll find this:<br />
[quote]&#8216;&#8211; Email Send &#8211;<br />
Const cdoSendUsingMethod = _<br />
&#8220;http://schemas.microsoft.com/cdo/configuration/sendusing&#8221;, _<br />
cdoSendUsingPort = 2, _<br />
cdoSMTPServer = _<br />
&#8220;http://schemas.microsoft.com/cdo/configuration/smtpserver&#8221;<br />
[/quote]</p>
<p>What does it do? it describes as email send, but why exactly are the internet adresses of Microsoft in there?<br />
Does it require internet connection even if you send in through intranet?</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Icingdeath</title>
		<link>http://korel.com.au/vbs/robocopy-log-scanner/comment-page-1/#comment-11</link>
		<dc:creator>Icingdeath</dc:creator>
		<pubDate>Thu, 25 Sep 2008 07:23:46 +0000</pubDate>
		<guid isPermaLink="false">http://korel.com.au/?page_id=100#comment-11</guid>
		<description>Thanks, saves me big time and a lot of complains</description>
		<content:encoded><![CDATA[<p>Thanks, saves me big time and a lot of complains</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robocopy - backup e script &#124; Problemi e Soluzioni di un sistemista informatico</title>
		<link>http://korel.com.au/vbs/robocopy-log-scanner/comment-page-1/#comment-10</link>
		<dc:creator>Robocopy - backup e script &#124; Problemi e Soluzioni di un sistemista informatico</dc:creator>
		<pubDate>Wed, 24 Sep 2008 21:30:44 +0000</pubDate>
		<guid isPermaLink="false">http://korel.com.au/?page_id=100#comment-10</guid>
		<description>[...] http://korel.com.au/vbs/robocopy-log-scanner/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://korel.com.au/vbs/robocopy-log-scanner/" rel="nofollow">http://korel.com.au/vbs/robocopy-log-scanner/</a> [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

