<?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: Free PowerShell Script: Monitoring SCR Health</title>
	<atom:link href="http://jeremyphillips.org/2009/07/free-powershell-script-monitoring-scr-health/feed/" rel="self" type="application/rss+xml" />
	<link>http://jeremyphillips.org/2009/07/free-powershell-script-monitoring-scr-health/</link>
	<description>Exchange Server, Travel &#38; Life</description>
	<lastBuildDate>Thu, 22 Dec 2011 17:33:45 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Mike Russo</title>
		<link>http://jeremyphillips.org/2009/07/free-powershell-script-monitoring-scr-health/comment-page-1/#comment-1523</link>
		<dc:creator>Mike Russo</dc:creator>
		<pubDate>Tue, 25 Jan 2011 17:56:28 +0000</pubDate>
		<guid isPermaLink="false">http://jeremyphillips.org/?p=898#comment-1523</guid>
		<description>Oh yeah - don&#039;t forget to add

Add-PSSnapin Microsoft.Exchange.Management.PowerShell.Admin

to the top of the script so that you can use regular powershell to run it so that you can run it from Scheduled Tasks.</description>
		<content:encoded><![CDATA[<p>Oh yeah &#8211; don&#8217;t forget to add</p>
<p>Add-PSSnapin Microsoft.Exchange.Management.PowerShell.Admin</p>
<p>to the top of the script so that you can use regular powershell to run it so that you can run it from Scheduled Tasks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Russo</title>
		<link>http://jeremyphillips.org/2009/07/free-powershell-script-monitoring-scr-health/comment-page-1/#comment-1522</link>
		<dc:creator>Mike Russo</dc:creator>
		<pubDate>Tue, 25 Jan 2011 17:31:00 +0000</pubDate>
		<guid isPermaLink="false">http://jeremyphillips.org/?p=898#comment-1522</guid>
		<description>THANKS MAN! Works great.</description>
		<content:encoded><![CDATA[<p>THANKS MAN! Works great.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Winston WOLF</title>
		<link>http://jeremyphillips.org/2009/07/free-powershell-script-monitoring-scr-health/comment-page-1/#comment-232</link>
		<dc:creator>Winston WOLF</dc:creator>
		<pubDate>Thu, 08 Jul 2010 10:08:02 +0000</pubDate>
		<guid isPermaLink="false">http://jeremyphillips.org/?p=898#comment-232</guid>
		<description>Thx gerard !!!!!!</description>
		<content:encoded><![CDATA[<p>Thx gerard !!!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gerard</title>
		<link>http://jeremyphillips.org/2009/07/free-powershell-script-monitoring-scr-health/comment-page-1/#comment-208</link>
		<dc:creator>gerard</dc:creator>
		<pubDate>Wed, 14 Apr 2010 22:36:02 +0000</pubDate>
		<guid isPermaLink="false">http://jeremyphillips.org/?p=898#comment-208</guid>
		<description>for anyone getting errors with this script; typecast the $MessageBody variable as an array:
  $MessageBody = @()

then pipe $MessageBody output to the formatting commandlets by changing this line of code:
$MessageBody += Get-StorageGroupCopyStatus $SG.Identity -StandbyMachine $SCR &#124; Select Identity,SummaryCopyStatus,CopyQueueLength,ReplayQueueLength,LastInspectedLogTime,ServiceDown,Failed,Suspend 

to this:
$MessageBody += Get-StorageGroupCopyStatus $SG.Identity -StandbyMachine $SCR &#124; Select Identity,SummaryCopyStatus,CopyQueueLength,ReplayQueueLength,LastInspectedLogTime,ServiceDown,Failed,Suspend &#124; format-list &#124; out-string</description>
		<content:encoded><![CDATA[<p>for anyone getting errors with this script; typecast the $MessageBody variable as an array:<br />
  $MessageBody = @()</p>
<p>then pipe $MessageBody output to the formatting commandlets by changing this line of code:<br />
$MessageBody += Get-StorageGroupCopyStatus $SG.Identity -StandbyMachine $SCR | Select Identity,SummaryCopyStatus,CopyQueueLength,ReplayQueueLength,LastInspectedLogTime,ServiceDown,Failed,Suspend </p>
<p>to this:<br />
$MessageBody += Get-StorageGroupCopyStatus $SG.Identity -StandbyMachine $SCR | Select Identity,SummaryCopyStatus,CopyQueueLength,ReplayQueueLength,LastInspectedLogTime,ServiceDown,Failed,Suspend | format-list | out-string</p>
]]></content:encoded>
	</item>
</channel>
</rss>

