<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" 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/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Jeremy Phillips</title>
	
	<link>http://jeremyphillips.org</link>
	<description>...whatever interests me...</description>
	<lastBuildDate>Tue, 24 Aug 2010 01:00:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/JeremyInMotion" /><feedburner:info uri="jeremyinmotion" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>JeremyInMotion</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Automagically Fixing FailedAndSuspended Exchange 2010 Databases with PowerShell</title>
		<link>http://feedproxy.google.com/~r/JeremyInMotion/~3/prPhJQFm6Ro/</link>
		<comments>http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 22:51:58 +0000</pubDate>
		<dc:creator>Jeremy Phillips</dc:creator>
				<category><![CDATA[Exchange Server]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Exchange 2010]]></category>

		<guid isPermaLink="false">http://jeremyphillips.org/?p=1168</guid>
		<description><![CDATA[Another quick script, this one finds all databases located on Exchange 2010 servers with a status of &#8216;FailedAndSuspended&#8217; and then reseeds them. Since this scripts makes changes to the systems, instead of just reading information, all activities are logged via PowerShell&#8217;s transcript feature. You&#8217;ll need to change the path in the 5th line of the [...]]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">Another quick script, this one finds all databases located on Exchange 2010 servers with a status of &#8216;FailedAndSuspended&#8217; and then reseeds them. Since this scripts makes changes to the systems, instead of just reading information, all activities are logged via PowerShell&#8217;s transcript feature. You&#8217;ll need to change the path in the 5th line of the script to reflect an actual location on your system.</div>
<div>Note that there are other options besides a reseed, this just makes the most sense the majority of the time.</div>
<p><code> </code></p>
<p><code></p>
<div>add-pssnapin *0* -ErrorAction SilentlyContinue</div>
<div id="_mcePaste">$startstring="Start script run at:  "</div>
<div id="_mcePaste">$startendtime=date</div>
<div id="_mcePaste">$startannounce=$startstring+$startendtime</div>
<div id="_mcePaste">Start-Transcript -Append -Force -Path 'C:\&lt;path&gt;\DBHealthFix.log'</div>
<div id="_mcePaste">$startannounce</div>
<div id="_mcePaste">#gets list of mailboxservers, locates 2010 servers, gets db copy status, finds copies that are failed, updates failed copies</div>
<div id="_mcePaste">$mailboxservers = get-mailboxserver | get-exchangeserver | ?{$_.IsE14OrLater -eq 'True'}</div>
<div id="_mcePaste">foreach ($mailboxserver in $mailboxservers){</div>
<div id="_mcePaste">get-mailboxdatabasecopystatus -Server $mailboxserver.name | ?{$_.Status -like 'FailedAndSuspended'} | update-mailboxdatabasecopy -deleteexistingfiles -confirm:$false</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">stop-transcript</div>
<p></code></p>
<div>Here are some screenshots of what happens along the way:</div>
<div>

<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed1/' title='DBHealthFailed1'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed1-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed1" title="DBHealthFailed1" /></a>
<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed2/' title='DBHealthFailed2'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed2-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed2" title="DBHealthFailed2" /></a>
<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed3/' title='DBHealthFailed3'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed3-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed3" title="DBHealthFailed3" /></a>
<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed4/' title='DBHealthFailed4'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed4-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed4" title="DBHealthFailed4" /></a>

<p>The script shown in the first and last screenshot is <a href="http://jeremyphillips.org/2010/08/checking-exchange-2010-database-health-with-powershell/">available here</a>.</p>
</div>
<div id="apf_post_footer">
<h4>Possibly Related Posts:</h4>
<ul>
<li class="apf_footer"><a href="http://jeremyphillips.org/?p=1164">Checking Exchange 2010 Database Health with PowerShell</a></li>
<li class="apf_footer"><a href="http://jeremyphillips.org/?p=903">Remotely Create A Registry Key With PowerShell</a></li>
</ul>
</div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=prPhJQFm6Ro:emtg7i4LTtg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=prPhJQFm6Ro:emtg7i4LTtg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=prPhJQFm6Ro:emtg7i4LTtg:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=prPhJQFm6Ro:emtg7i4LTtg:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=prPhJQFm6Ro:emtg7i4LTtg:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=prPhJQFm6Ro:emtg7i4LTtg:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=prPhJQFm6Ro:emtg7i4LTtg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=prPhJQFm6Ro:emtg7i4LTtg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=prPhJQFm6Ro:emtg7i4LTtg:lUugP6SVGzY"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=prPhJQFm6Ro:emtg7i4LTtg:lUugP6SVGzY" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/</feedburner:origLink></item>
		<item>
		<title>Checking Exchange 2010 Database Health with PowerShell</title>
		<link>http://feedproxy.google.com/~r/JeremyInMotion/~3/1tUBBgmRzPI/</link>
		<comments>http://jeremyphillips.org/2010/08/checking-exchange-2010-database-health-with-powershell/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 22:14:44 +0000</pubDate>
		<dc:creator>Jeremy Phillips</dc:creator>
				<category><![CDATA[Exchange Server]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Exchange 2010]]></category>

		<guid isPermaLink="false">http://jeremyphillips.org/?p=1164</guid>
		<description><![CDATA[Just a quick script that checks your databases. Anything besides &#8216;Healthy&#8217; or &#8216;Mounted&#8217; should probably be investigated. Add-PSSnapin *0* -ErrorAction SilentlyContinue $mailboxservers = get-mailboxserver &#124; get-exchangeserver &#124; ?{$_.IsE14OrLater -eq 'True'} $A = (get-host).UI.RawUI $A.WindowTitle = "Database Health Check" $B = $A.windowsize $B.width = 110 $B.height = 30 $A.WindowSize = $B while ($true) {cls; foreach ($mailboxserver [...]]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">Another quick script, this one finds all databases located on Exchange 2010 servers with a status of &#8216;FailedAndSuspended&#8217; and then reseeds them. Since this scripts makes changes to the systems, instead of just reading information, all activities are logged via PowerShell&#8217;s transcript feature. You&#8217;ll need to change the path in the 5th line of the script to reflect an actual location on your system.</div>
<div>Note that there are other options besides a reseed, this just makes the most sense the majority of the time.</div>
<p><code> </code></p>
<p><code></p>
<div>add-pssnapin *0* -ErrorAction SilentlyContinue</div>
<div id="_mcePaste">$startstring="Start script run at:  "</div>
<div id="_mcePaste">$startendtime=date</div>
<div id="_mcePaste">$startannounce=$startstring+$startendtime</div>
<div id="_mcePaste">Start-Transcript -Append -Force -Path 'C:\&lt;path&gt;\DBHealthFix.log'</div>
<div id="_mcePaste">$startannounce</div>
<div id="_mcePaste">#gets list of mailboxservers, locates 2010 servers, gets db copy status, finds copies that are failed, updates failed copies</div>
<div id="_mcePaste">$mailboxservers = get-mailboxserver | get-exchangeserver | ?{$_.IsE14OrLater -eq 'True'}</div>
<div id="_mcePaste">foreach ($mailboxserver in $mailboxservers){</div>
<div id="_mcePaste">get-mailboxdatabasecopystatus -Server $mailboxserver.name | ?{$_.Status -like 'FailedAndSuspended'} | update-mailboxdatabasecopy -deleteexistingfiles -confirm:$false</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">stop-transcript</div>
<p></code></p>
<div>Here are some screenshots of what happens along the way:</div>
<div>

<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed1/' title='DBHealthFailed1'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed1-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed1" title="DBHealthFailed1" /></a>
<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed2/' title='DBHealthFailed2'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed2-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed2" title="DBHealthFailed2" /></a>
<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed3/' title='DBHealthFailed3'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed3-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed3" title="DBHealthFailed3" /></a>
<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed4/' title='DBHealthFailed4'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed4-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed4" title="DBHealthFailed4" /></a>

<p>The script shown in the first and last screenshot is <a href="http://jeremyphillips.org/2010/08/checking-exchange-2010-database-health-with-powershell/">available here</a>.</p>
</div>
<div id="apf_post_footer">
<h4>Possibly Related Posts:</h4>
<ul>
<li class="apf_footer"><a href="http://jeremyphillips.org/?p=1164">Checking Exchange 2010 Database Health with PowerShell</a></li>
<li class="apf_footer"><a href="http://jeremyphillips.org/?p=903">Remotely Create A Registry Key With PowerShell</a></li>
</ul>
</div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=1tUBBgmRzPI:pvLjsXzvUaI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=1tUBBgmRzPI:pvLjsXzvUaI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=1tUBBgmRzPI:pvLjsXzvUaI:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=1tUBBgmRzPI:pvLjsXzvUaI:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=1tUBBgmRzPI:pvLjsXzvUaI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=1tUBBgmRzPI:pvLjsXzvUaI:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=1tUBBgmRzPI:pvLjsXzvUaI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=1tUBBgmRzPI:pvLjsXzvUaI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=1tUBBgmRzPI:pvLjsXzvUaI:lUugP6SVGzY"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=1tUBBgmRzPI:pvLjsXzvUaI:lUugP6SVGzY" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://jeremyphillips.org/2010/08/checking-exchange-2010-database-health-with-powershell/</feedburner:origLink></item>
		<item>
		<title>Unbeknownst to most..</title>
		<link>http://feedproxy.google.com/~r/JeremyInMotion/~3/JM__MZ5HVS4/</link>
		<comments>http://jeremyphillips.org/2010/05/unbeknownst-to-most/#comments</comments>
		<pubDate>Mon, 24 May 2010 01:44:14 +0000</pubDate>
		<dc:creator>Jeremy Phillips</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://jeremyphillips.org/?p=1161</guid>
		<description><![CDATA[Possibly Related Posts: Unbeknownst to most.. The Birthday Skeleton Seriously?]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">Another quick script, this one finds all databases located on Exchange 2010 servers with a status of &#8216;FailedAndSuspended&#8217; and then reseeds them. Since this scripts makes changes to the systems, instead of just reading information, all activities are logged via PowerShell&#8217;s transcript feature. You&#8217;ll need to change the path in the 5th line of the script to reflect an actual location on your system.</div>
<div>Note that there are other options besides a reseed, this just makes the most sense the majority of the time.</div>
<p><code> </code></p>
<p><code></p>
<div>add-pssnapin *0* -ErrorAction SilentlyContinue</div>
<div id="_mcePaste">$startstring="Start script run at:  "</div>
<div id="_mcePaste">$startendtime=date</div>
<div id="_mcePaste">$startannounce=$startstring+$startendtime</div>
<div id="_mcePaste">Start-Transcript -Append -Force -Path 'C:\&lt;path&gt;\DBHealthFix.log'</div>
<div id="_mcePaste">$startannounce</div>
<div id="_mcePaste">#gets list of mailboxservers, locates 2010 servers, gets db copy status, finds copies that are failed, updates failed copies</div>
<div id="_mcePaste">$mailboxservers = get-mailboxserver | get-exchangeserver | ?{$_.IsE14OrLater -eq 'True'}</div>
<div id="_mcePaste">foreach ($mailboxserver in $mailboxservers){</div>
<div id="_mcePaste">get-mailboxdatabasecopystatus -Server $mailboxserver.name | ?{$_.Status -like 'FailedAndSuspended'} | update-mailboxdatabasecopy -deleteexistingfiles -confirm:$false</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">stop-transcript</div>
<p></code></p>
<div>Here are some screenshots of what happens along the way:</div>
<div>

<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed1/' title='DBHealthFailed1'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed1-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed1" title="DBHealthFailed1" /></a>
<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed2/' title='DBHealthFailed2'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed2-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed2" title="DBHealthFailed2" /></a>
<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed3/' title='DBHealthFailed3'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed3-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed3" title="DBHealthFailed3" /></a>
<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed4/' title='DBHealthFailed4'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed4-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed4" title="DBHealthFailed4" /></a>

<p>The script shown in the first and last screenshot is <a href="http://jeremyphillips.org/2010/08/checking-exchange-2010-database-health-with-powershell/">available here</a>.</p>
</div>
<div id="apf_post_footer">
<h4>Possibly Related Posts:</h4>
<ul>
<li class="apf_footer"><a href="http://jeremyphillips.org/?p=1164">Checking Exchange 2010 Database Health with PowerShell</a></li>
<li class="apf_footer"><a href="http://jeremyphillips.org/?p=903">Remotely Create A Registry Key With PowerShell</a></li>
</ul>
</div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=JM__MZ5HVS4:wa0jpkx2CDA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=JM__MZ5HVS4:wa0jpkx2CDA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=JM__MZ5HVS4:wa0jpkx2CDA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=JM__MZ5HVS4:wa0jpkx2CDA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=JM__MZ5HVS4:wa0jpkx2CDA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=JM__MZ5HVS4:wa0jpkx2CDA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=JM__MZ5HVS4:wa0jpkx2CDA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=JM__MZ5HVS4:wa0jpkx2CDA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=JM__MZ5HVS4:wa0jpkx2CDA:lUugP6SVGzY"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=JM__MZ5HVS4:wa0jpkx2CDA:lUugP6SVGzY" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://jeremyphillips.org/2010/05/unbeknownst-to-most/</feedburner:origLink></item>
		<item>
		<title>The Birthday Skeleton</title>
		<link>http://feedproxy.google.com/~r/JeremyInMotion/~3/zViyW2o0itI/</link>
		<comments>http://jeremyphillips.org/2010/05/the-birthday-skeleton/#comments</comments>
		<pubDate>Mon, 24 May 2010 01:05:39 +0000</pubDate>
		<dc:creator>Jeremy Phillips</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://jeremyphillips.org/?p=1159</guid>
		<description><![CDATA[As found on Reddit&#8230; Possibly Related Posts: Unbeknownst to most.. The Birthday Skeleton Seriously?]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">Another quick script, this one finds all databases located on Exchange 2010 servers with a status of &#8216;FailedAndSuspended&#8217; and then reseeds them. Since this scripts makes changes to the systems, instead of just reading information, all activities are logged via PowerShell&#8217;s transcript feature. You&#8217;ll need to change the path in the 5th line of the script to reflect an actual location on your system.</div>
<div>Note that there are other options besides a reseed, this just makes the most sense the majority of the time.</div>
<p><code> </code></p>
<p><code></p>
<div>add-pssnapin *0* -ErrorAction SilentlyContinue</div>
<div id="_mcePaste">$startstring="Start script run at:  "</div>
<div id="_mcePaste">$startendtime=date</div>
<div id="_mcePaste">$startannounce=$startstring+$startendtime</div>
<div id="_mcePaste">Start-Transcript -Append -Force -Path 'C:\&lt;path&gt;\DBHealthFix.log'</div>
<div id="_mcePaste">$startannounce</div>
<div id="_mcePaste">#gets list of mailboxservers, locates 2010 servers, gets db copy status, finds copies that are failed, updates failed copies</div>
<div id="_mcePaste">$mailboxservers = get-mailboxserver | get-exchangeserver | ?{$_.IsE14OrLater -eq 'True'}</div>
<div id="_mcePaste">foreach ($mailboxserver in $mailboxservers){</div>
<div id="_mcePaste">get-mailboxdatabasecopystatus -Server $mailboxserver.name | ?{$_.Status -like 'FailedAndSuspended'} | update-mailboxdatabasecopy -deleteexistingfiles -confirm:$false</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">stop-transcript</div>
<p></code></p>
<div>Here are some screenshots of what happens along the way:</div>
<div>

<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed1/' title='DBHealthFailed1'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed1-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed1" title="DBHealthFailed1" /></a>
<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed2/' title='DBHealthFailed2'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed2-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed2" title="DBHealthFailed2" /></a>
<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed3/' title='DBHealthFailed3'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed3-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed3" title="DBHealthFailed3" /></a>
<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed4/' title='DBHealthFailed4'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed4-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed4" title="DBHealthFailed4" /></a>

<p>The script shown in the first and last screenshot is <a href="http://jeremyphillips.org/2010/08/checking-exchange-2010-database-health-with-powershell/">available here</a>.</p>
</div>
<div id="apf_post_footer">
<h4>Possibly Related Posts:</h4>
<ul>
<li class="apf_footer"><a href="http://jeremyphillips.org/?p=1164">Checking Exchange 2010 Database Health with PowerShell</a></li>
<li class="apf_footer"><a href="http://jeremyphillips.org/?p=903">Remotely Create A Registry Key With PowerShell</a></li>
</ul>
</div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=zViyW2o0itI:-yvM5BNAi18:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=zViyW2o0itI:-yvM5BNAi18:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=zViyW2o0itI:-yvM5BNAi18:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=zViyW2o0itI:-yvM5BNAi18:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=zViyW2o0itI:-yvM5BNAi18:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=zViyW2o0itI:-yvM5BNAi18:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=zViyW2o0itI:-yvM5BNAi18:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=zViyW2o0itI:-yvM5BNAi18:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=zViyW2o0itI:-yvM5BNAi18:lUugP6SVGzY"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=zViyW2o0itI:-yvM5BNAi18:lUugP6SVGzY" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://jeremyphillips.org/2010/05/the-birthday-skeleton/</feedburner:origLink></item>
		<item>
		<title>Seriously?</title>
		<link>http://feedproxy.google.com/~r/JeremyInMotion/~3/yLoegahIW_c/</link>
		<comments>http://jeremyphillips.org/2010/05/seriously/#comments</comments>
		<pubDate>Mon, 17 May 2010 08:25:42 +0000</pubDate>
		<dc:creator>Jeremy Phillips</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[igiveup]]></category>

		<guid isPermaLink="false">http://jeremyphillips.org/?p=1157</guid>
		<description><![CDATA[Possibly Related Posts: Unbeknownst to most.. The Birthday Skeleton Seriously?]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">Another quick script, this one finds all databases located on Exchange 2010 servers with a status of &#8216;FailedAndSuspended&#8217; and then reseeds them. Since this scripts makes changes to the systems, instead of just reading information, all activities are logged via PowerShell&#8217;s transcript feature. You&#8217;ll need to change the path in the 5th line of the script to reflect an actual location on your system.</div>
<div>Note that there are other options besides a reseed, this just makes the most sense the majority of the time.</div>
<p><code> </code></p>
<p><code></p>
<div>add-pssnapin *0* -ErrorAction SilentlyContinue</div>
<div id="_mcePaste">$startstring="Start script run at:  "</div>
<div id="_mcePaste">$startendtime=date</div>
<div id="_mcePaste">$startannounce=$startstring+$startendtime</div>
<div id="_mcePaste">Start-Transcript -Append -Force -Path 'C:\&lt;path&gt;\DBHealthFix.log'</div>
<div id="_mcePaste">$startannounce</div>
<div id="_mcePaste">#gets list of mailboxservers, locates 2010 servers, gets db copy status, finds copies that are failed, updates failed copies</div>
<div id="_mcePaste">$mailboxservers = get-mailboxserver | get-exchangeserver | ?{$_.IsE14OrLater -eq 'True'}</div>
<div id="_mcePaste">foreach ($mailboxserver in $mailboxservers){</div>
<div id="_mcePaste">get-mailboxdatabasecopystatus -Server $mailboxserver.name | ?{$_.Status -like 'FailedAndSuspended'} | update-mailboxdatabasecopy -deleteexistingfiles -confirm:$false</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">stop-transcript</div>
<p></code></p>
<div>Here are some screenshots of what happens along the way:</div>
<div>

<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed1/' title='DBHealthFailed1'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed1-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed1" title="DBHealthFailed1" /></a>
<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed2/' title='DBHealthFailed2'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed2-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed2" title="DBHealthFailed2" /></a>
<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed3/' title='DBHealthFailed3'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed3-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed3" title="DBHealthFailed3" /></a>
<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed4/' title='DBHealthFailed4'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed4-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed4" title="DBHealthFailed4" /></a>

<p>The script shown in the first and last screenshot is <a href="http://jeremyphillips.org/2010/08/checking-exchange-2010-database-health-with-powershell/">available here</a>.</p>
</div>
<div id="apf_post_footer">
<h4>Possibly Related Posts:</h4>
<ul>
<li class="apf_footer"><a href="http://jeremyphillips.org/?p=1164">Checking Exchange 2010 Database Health with PowerShell</a></li>
<li class="apf_footer"><a href="http://jeremyphillips.org/?p=903">Remotely Create A Registry Key With PowerShell</a></li>
</ul>
</div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=yLoegahIW_c:-oKbvLJ5gv8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=yLoegahIW_c:-oKbvLJ5gv8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=yLoegahIW_c:-oKbvLJ5gv8:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=yLoegahIW_c:-oKbvLJ5gv8:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=yLoegahIW_c:-oKbvLJ5gv8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=yLoegahIW_c:-oKbvLJ5gv8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=yLoegahIW_c:-oKbvLJ5gv8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=yLoegahIW_c:-oKbvLJ5gv8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=yLoegahIW_c:-oKbvLJ5gv8:lUugP6SVGzY"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=yLoegahIW_c:-oKbvLJ5gv8:lUugP6SVGzY" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://jeremyphillips.org/2010/05/seriously/</feedburner:origLink></item>
		<item>
		<title>Interview Tips</title>
		<link>http://feedproxy.google.com/~r/JeremyInMotion/~3/WBpmqbLCdrA/</link>
		<comments>http://jeremyphillips.org/2010/04/interview-tips/#comments</comments>
		<pubDate>Sun, 11 Apr 2010 23:48:28 +0000</pubDate>
		<dc:creator>Jeremy Phillips</dc:creator>
				<category><![CDATA[Employment]]></category>

		<guid isPermaLink="false">http://jeremyphillips.org/?p=1154</guid>
		<description><![CDATA[Since starting back at my current role in February, I&#8217;ve been performing a large number of interviews. A few candidates have really impressed me, a few were woefully unprepared, and most fell somewhere in between. In the spirit of sharing knowledge, I have a few tips to share on how to be a candidate who [...]]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">Another quick script, this one finds all databases located on Exchange 2010 servers with a status of &#8216;FailedAndSuspended&#8217; and then reseeds them. Since this scripts makes changes to the systems, instead of just reading information, all activities are logged via PowerShell&#8217;s transcript feature. You&#8217;ll need to change the path in the 5th line of the script to reflect an actual location on your system.</div>
<div>Note that there are other options besides a reseed, this just makes the most sense the majority of the time.</div>
<p><code> </code></p>
<p><code></p>
<div>add-pssnapin *0* -ErrorAction SilentlyContinue</div>
<div id="_mcePaste">$startstring="Start script run at:  "</div>
<div id="_mcePaste">$startendtime=date</div>
<div id="_mcePaste">$startannounce=$startstring+$startendtime</div>
<div id="_mcePaste">Start-Transcript -Append -Force -Path 'C:\&lt;path&gt;\DBHealthFix.log'</div>
<div id="_mcePaste">$startannounce</div>
<div id="_mcePaste">#gets list of mailboxservers, locates 2010 servers, gets db copy status, finds copies that are failed, updates failed copies</div>
<div id="_mcePaste">$mailboxservers = get-mailboxserver | get-exchangeserver | ?{$_.IsE14OrLater -eq 'True'}</div>
<div id="_mcePaste">foreach ($mailboxserver in $mailboxservers){</div>
<div id="_mcePaste">get-mailboxdatabasecopystatus -Server $mailboxserver.name | ?{$_.Status -like 'FailedAndSuspended'} | update-mailboxdatabasecopy -deleteexistingfiles -confirm:$false</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">stop-transcript</div>
<p></code></p>
<div>Here are some screenshots of what happens along the way:</div>
<div>

<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed1/' title='DBHealthFailed1'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed1-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed1" title="DBHealthFailed1" /></a>
<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed2/' title='DBHealthFailed2'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed2-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed2" title="DBHealthFailed2" /></a>
<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed3/' title='DBHealthFailed3'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed3-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed3" title="DBHealthFailed3" /></a>
<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed4/' title='DBHealthFailed4'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed4-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed4" title="DBHealthFailed4" /></a>

<p>The script shown in the first and last screenshot is <a href="http://jeremyphillips.org/2010/08/checking-exchange-2010-database-health-with-powershell/">available here</a>.</p>
</div>
<div id="apf_post_footer">
<h4>Possibly Related Posts:</h4>
<ul>
<li class="apf_footer"><a href="http://jeremyphillips.org/?p=1164">Checking Exchange 2010 Database Health with PowerShell</a></li>
<li class="apf_footer"><a href="http://jeremyphillips.org/?p=903">Remotely Create A Registry Key With PowerShell</a></li>
</ul>
</div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=WBpmqbLCdrA:-wG5XSfQkgI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=WBpmqbLCdrA:-wG5XSfQkgI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=WBpmqbLCdrA:-wG5XSfQkgI:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=WBpmqbLCdrA:-wG5XSfQkgI:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=WBpmqbLCdrA:-wG5XSfQkgI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=WBpmqbLCdrA:-wG5XSfQkgI:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=WBpmqbLCdrA:-wG5XSfQkgI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=WBpmqbLCdrA:-wG5XSfQkgI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=WBpmqbLCdrA:-wG5XSfQkgI:lUugP6SVGzY"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=WBpmqbLCdrA:-wG5XSfQkgI:lUugP6SVGzY" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://jeremyphillips.org/2010/04/interview-tips/</feedburner:origLink></item>
		<item>
		<title>March</title>
		<link>http://feedproxy.google.com/~r/JeremyInMotion/~3/zS8Wi-iQP1I/</link>
		<comments>http://jeremyphillips.org/2010/03/march/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 06:06:08 +0000</pubDate>
		<dc:creator>Jeremy Phillips</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://jeremyphillips.org/?p=1152</guid>
		<description><![CDATA[This was a good month. Life at Azaleos is going well so far; I made the right choice coming back. I love the atmosphere and work with a great bunch of people. Although the company is bigger than when I left the growth is being sustained quite nicely. I visited our Charlotte, NC office the [...]]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">Another quick script, this one finds all databases located on Exchange 2010 servers with a status of &#8216;FailedAndSuspended&#8217; and then reseeds them. Since this scripts makes changes to the systems, instead of just reading information, all activities are logged via PowerShell&#8217;s transcript feature. You&#8217;ll need to change the path in the 5th line of the script to reflect an actual location on your system.</div>
<div>Note that there are other options besides a reseed, this just makes the most sense the majority of the time.</div>
<p><code> </code></p>
<p><code></p>
<div>add-pssnapin *0* -ErrorAction SilentlyContinue</div>
<div id="_mcePaste">$startstring="Start script run at:  "</div>
<div id="_mcePaste">$startendtime=date</div>
<div id="_mcePaste">$startannounce=$startstring+$startendtime</div>
<div id="_mcePaste">Start-Transcript -Append -Force -Path 'C:\&lt;path&gt;\DBHealthFix.log'</div>
<div id="_mcePaste">$startannounce</div>
<div id="_mcePaste">#gets list of mailboxservers, locates 2010 servers, gets db copy status, finds copies that are failed, updates failed copies</div>
<div id="_mcePaste">$mailboxservers = get-mailboxserver | get-exchangeserver | ?{$_.IsE14OrLater -eq 'True'}</div>
<div id="_mcePaste">foreach ($mailboxserver in $mailboxservers){</div>
<div id="_mcePaste">get-mailboxdatabasecopystatus -Server $mailboxserver.name | ?{$_.Status -like 'FailedAndSuspended'} | update-mailboxdatabasecopy -deleteexistingfiles -confirm:$false</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">stop-transcript</div>
<p></code></p>
<div>Here are some screenshots of what happens along the way:</div>
<div>

<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed1/' title='DBHealthFailed1'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed1-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed1" title="DBHealthFailed1" /></a>
<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed2/' title='DBHealthFailed2'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed2-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed2" title="DBHealthFailed2" /></a>
<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed3/' title='DBHealthFailed3'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed3-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed3" title="DBHealthFailed3" /></a>
<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed4/' title='DBHealthFailed4'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed4-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed4" title="DBHealthFailed4" /></a>

<p>The script shown in the first and last screenshot is <a href="http://jeremyphillips.org/2010/08/checking-exchange-2010-database-health-with-powershell/">available here</a>.</p>
</div>
<div id="apf_post_footer">
<h4>Possibly Related Posts:</h4>
<ul>
<li class="apf_footer"><a href="http://jeremyphillips.org/?p=1164">Checking Exchange 2010 Database Health with PowerShell</a></li>
<li class="apf_footer"><a href="http://jeremyphillips.org/?p=903">Remotely Create A Registry Key With PowerShell</a></li>
</ul>
</div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=zS8Wi-iQP1I:DCvP5EkMJIY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=zS8Wi-iQP1I:DCvP5EkMJIY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=zS8Wi-iQP1I:DCvP5EkMJIY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=zS8Wi-iQP1I:DCvP5EkMJIY:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=zS8Wi-iQP1I:DCvP5EkMJIY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=zS8Wi-iQP1I:DCvP5EkMJIY:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=zS8Wi-iQP1I:DCvP5EkMJIY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=zS8Wi-iQP1I:DCvP5EkMJIY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=zS8Wi-iQP1I:DCvP5EkMJIY:lUugP6SVGzY"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=zS8Wi-iQP1I:DCvP5EkMJIY:lUugP6SVGzY" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://jeremyphillips.org/2010/03/march/</feedburner:origLink></item>
		<item>
		<title>Literary Tattoos</title>
		<link>http://feedproxy.google.com/~r/JeremyInMotion/~3/L69YfsfGW70/</link>
		<comments>http://jeremyphillips.org/2010/02/literary-tattoos/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 19:27:40 +0000</pubDate>
		<dc:creator>Jeremy Phillips</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[literary]]></category>
		<category><![CDATA[tattoos]]></category>

		<guid isPermaLink="false">http://jeremyphillips.org/?p=1151</guid>
		<description><![CDATA[This morning I came across a site that has simply entranced me for some odd reason - Contrariwise: Literary Tattoos. It&#8217;s definitely worth giving the site a brief read and possibly popping it into your RSS reader. A few that I really like so far are below. the tigers have found me rage, rage Real Courage [...]]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">Another quick script, this one finds all databases located on Exchange 2010 servers with a status of &#8216;FailedAndSuspended&#8217; and then reseeds them. Since this scripts makes changes to the systems, instead of just reading information, all activities are logged via PowerShell&#8217;s transcript feature. You&#8217;ll need to change the path in the 5th line of the script to reflect an actual location on your system.</div>
<div>Note that there are other options besides a reseed, this just makes the most sense the majority of the time.</div>
<p><code> </code></p>
<p><code></p>
<div>add-pssnapin *0* -ErrorAction SilentlyContinue</div>
<div id="_mcePaste">$startstring="Start script run at:  "</div>
<div id="_mcePaste">$startendtime=date</div>
<div id="_mcePaste">$startannounce=$startstring+$startendtime</div>
<div id="_mcePaste">Start-Transcript -Append -Force -Path 'C:\&lt;path&gt;\DBHealthFix.log'</div>
<div id="_mcePaste">$startannounce</div>
<div id="_mcePaste">#gets list of mailboxservers, locates 2010 servers, gets db copy status, finds copies that are failed, updates failed copies</div>
<div id="_mcePaste">$mailboxservers = get-mailboxserver | get-exchangeserver | ?{$_.IsE14OrLater -eq 'True'}</div>
<div id="_mcePaste">foreach ($mailboxserver in $mailboxservers){</div>
<div id="_mcePaste">get-mailboxdatabasecopystatus -Server $mailboxserver.name | ?{$_.Status -like 'FailedAndSuspended'} | update-mailboxdatabasecopy -deleteexistingfiles -confirm:$false</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">stop-transcript</div>
<p></code></p>
<div>Here are some screenshots of what happens along the way:</div>
<div>

<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed1/' title='DBHealthFailed1'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed1-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed1" title="DBHealthFailed1" /></a>
<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed2/' title='DBHealthFailed2'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed2-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed2" title="DBHealthFailed2" /></a>
<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed3/' title='DBHealthFailed3'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed3-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed3" title="DBHealthFailed3" /></a>
<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed4/' title='DBHealthFailed4'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed4-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed4" title="DBHealthFailed4" /></a>

<p>The script shown in the first and last screenshot is <a href="http://jeremyphillips.org/2010/08/checking-exchange-2010-database-health-with-powershell/">available here</a>.</p>
</div>
<div id="apf_post_footer">
<h4>Possibly Related Posts:</h4>
<ul>
<li class="apf_footer"><a href="http://jeremyphillips.org/?p=1164">Checking Exchange 2010 Database Health with PowerShell</a></li>
<li class="apf_footer"><a href="http://jeremyphillips.org/?p=903">Remotely Create A Registry Key With PowerShell</a></li>
</ul>
</div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=L69YfsfGW70:mq7l014J3OA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=L69YfsfGW70:mq7l014J3OA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=L69YfsfGW70:mq7l014J3OA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=L69YfsfGW70:mq7l014J3OA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=L69YfsfGW70:mq7l014J3OA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=L69YfsfGW70:mq7l014J3OA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=L69YfsfGW70:mq7l014J3OA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=L69YfsfGW70:mq7l014J3OA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=L69YfsfGW70:mq7l014J3OA:lUugP6SVGzY"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=L69YfsfGW70:mq7l014J3OA:lUugP6SVGzY" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://jeremyphillips.org/2010/02/literary-tattoos/</feedburner:origLink></item>
		<item>
		<title>Yosemite Firefall</title>
		<link>http://feedproxy.google.com/~r/JeremyInMotion/~3/lt8V2Q-U2Kg/</link>
		<comments>http://jeremyphillips.org/2010/02/yosemite-firefall/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 00:16:27 +0000</pubDate>
		<dc:creator>Jeremy Phillips</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Pictures]]></category>

		<guid isPermaLink="false">http://jeremyphillips.org/?p=1145</guid>
		<description><![CDATA[I found a link to the image on Reddit and have no clue who took it. If you do please let me know so I can give credit where it is due. More info on the Yosemite Firefall is available here. Possibly Related Posts: Yosemite Firefall Random Pictures]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">Another quick script, this one finds all databases located on Exchange 2010 servers with a status of &#8216;FailedAndSuspended&#8217; and then reseeds them. Since this scripts makes changes to the systems, instead of just reading information, all activities are logged via PowerShell&#8217;s transcript feature. You&#8217;ll need to change the path in the 5th line of the script to reflect an actual location on your system.</div>
<div>Note that there are other options besides a reseed, this just makes the most sense the majority of the time.</div>
<p><code> </code></p>
<p><code></p>
<div>add-pssnapin *0* -ErrorAction SilentlyContinue</div>
<div id="_mcePaste">$startstring="Start script run at:  "</div>
<div id="_mcePaste">$startendtime=date</div>
<div id="_mcePaste">$startannounce=$startstring+$startendtime</div>
<div id="_mcePaste">Start-Transcript -Append -Force -Path 'C:\&lt;path&gt;\DBHealthFix.log'</div>
<div id="_mcePaste">$startannounce</div>
<div id="_mcePaste">#gets list of mailboxservers, locates 2010 servers, gets db copy status, finds copies that are failed, updates failed copies</div>
<div id="_mcePaste">$mailboxservers = get-mailboxserver | get-exchangeserver | ?{$_.IsE14OrLater -eq 'True'}</div>
<div id="_mcePaste">foreach ($mailboxserver in $mailboxservers){</div>
<div id="_mcePaste">get-mailboxdatabasecopystatus -Server $mailboxserver.name | ?{$_.Status -like 'FailedAndSuspended'} | update-mailboxdatabasecopy -deleteexistingfiles -confirm:$false</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">stop-transcript</div>
<p></code></p>
<div>Here are some screenshots of what happens along the way:</div>
<div>

<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed1/' title='DBHealthFailed1'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed1-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed1" title="DBHealthFailed1" /></a>
<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed2/' title='DBHealthFailed2'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed2-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed2" title="DBHealthFailed2" /></a>
<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed3/' title='DBHealthFailed3'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed3-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed3" title="DBHealthFailed3" /></a>
<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed4/' title='DBHealthFailed4'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed4-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed4" title="DBHealthFailed4" /></a>

<p>The script shown in the first and last screenshot is <a href="http://jeremyphillips.org/2010/08/checking-exchange-2010-database-health-with-powershell/">available here</a>.</p>
</div>
<div id="apf_post_footer">
<h4>Possibly Related Posts:</h4>
<ul>
<li class="apf_footer"><a href="http://jeremyphillips.org/?p=1164">Checking Exchange 2010 Database Health with PowerShell</a></li>
<li class="apf_footer"><a href="http://jeremyphillips.org/?p=903">Remotely Create A Registry Key With PowerShell</a></li>
</ul>
</div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=lt8V2Q-U2Kg:WS-eOP-aM40:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=lt8V2Q-U2Kg:WS-eOP-aM40:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=lt8V2Q-U2Kg:WS-eOP-aM40:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=lt8V2Q-U2Kg:WS-eOP-aM40:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=lt8V2Q-U2Kg:WS-eOP-aM40:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=lt8V2Q-U2Kg:WS-eOP-aM40:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=lt8V2Q-U2Kg:WS-eOP-aM40:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=lt8V2Q-U2Kg:WS-eOP-aM40:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=lt8V2Q-U2Kg:WS-eOP-aM40:lUugP6SVGzY"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=lt8V2Q-U2Kg:WS-eOP-aM40:lUugP6SVGzY" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://jeremyphillips.org/2010/02/yosemite-firefall/</feedburner:origLink></item>
		<item>
		<title>Changes</title>
		<link>http://feedproxy.google.com/~r/JeremyInMotion/~3/rylkJQMFWXA/</link>
		<comments>http://jeremyphillips.org/2010/01/changes/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 03:33:33 +0000</pubDate>
		<dc:creator>Jeremy Phillips</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://jeremyphillips.org/?p=1143</guid>
		<description><![CDATA[It&#8217;s been awhile since I posted any updates on what I&#8217;m doing with my life. On the job front, I&#8217;ve got exactly 6 more working days left at Microsoft. I&#8217;m starting at Azaleos again on Monday February 8th, resuming my role as Director of Operations. Yes, this surprised me as well; it wasn&#8217;t something I [...]]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">Another quick script, this one finds all databases located on Exchange 2010 servers with a status of &#8216;FailedAndSuspended&#8217; and then reseeds them. Since this scripts makes changes to the systems, instead of just reading information, all activities are logged via PowerShell&#8217;s transcript feature. You&#8217;ll need to change the path in the 5th line of the script to reflect an actual location on your system.</div>
<div>Note that there are other options besides a reseed, this just makes the most sense the majority of the time.</div>
<p><code> </code></p>
<p><code></p>
<div>add-pssnapin *0* -ErrorAction SilentlyContinue</div>
<div id="_mcePaste">$startstring="Start script run at:  "</div>
<div id="_mcePaste">$startendtime=date</div>
<div id="_mcePaste">$startannounce=$startstring+$startendtime</div>
<div id="_mcePaste">Start-Transcript -Append -Force -Path 'C:\&lt;path&gt;\DBHealthFix.log'</div>
<div id="_mcePaste">$startannounce</div>
<div id="_mcePaste">#gets list of mailboxservers, locates 2010 servers, gets db copy status, finds copies that are failed, updates failed copies</div>
<div id="_mcePaste">$mailboxservers = get-mailboxserver | get-exchangeserver | ?{$_.IsE14OrLater -eq 'True'}</div>
<div id="_mcePaste">foreach ($mailboxserver in $mailboxservers){</div>
<div id="_mcePaste">get-mailboxdatabasecopystatus -Server $mailboxserver.name | ?{$_.Status -like 'FailedAndSuspended'} | update-mailboxdatabasecopy -deleteexistingfiles -confirm:$false</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">stop-transcript</div>
<p></code></p>
<div>Here are some screenshots of what happens along the way:</div>
<div>

<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed1/' title='DBHealthFailed1'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed1-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed1" title="DBHealthFailed1" /></a>
<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed2/' title='DBHealthFailed2'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed2-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed2" title="DBHealthFailed2" /></a>
<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed3/' title='DBHealthFailed3'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed3-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed3" title="DBHealthFailed3" /></a>
<a href='http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/dbhealthfailed4/' title='DBHealthFailed4'><img width="150" height="150" src="http://c2192382.cdn.cloudfiles.rackspacecloud.com/2010/08/DBHealthFailed4-150x150.png" class="attachment-thumbnail" alt="DBHealthFailed4" title="DBHealthFailed4" /></a>

<p>The script shown in the first and last screenshot is <a href="http://jeremyphillips.org/2010/08/checking-exchange-2010-database-health-with-powershell/">available here</a>.</p>
</div>
<div id="apf_post_footer">
<h4>Possibly Related Posts:</h4>
<ul>
<li class="apf_footer"><a href="http://jeremyphillips.org/?p=1164">Checking Exchange 2010 Database Health with PowerShell</a></li>
<li class="apf_footer"><a href="http://jeremyphillips.org/?p=903">Remotely Create A Registry Key With PowerShell</a></li>
</ul>
</div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=rylkJQMFWXA:H77xHr5VEuM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=rylkJQMFWXA:H77xHr5VEuM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=rylkJQMFWXA:H77xHr5VEuM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=rylkJQMFWXA:H77xHr5VEuM:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=rylkJQMFWXA:H77xHr5VEuM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=rylkJQMFWXA:H77xHr5VEuM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=rylkJQMFWXA:H77xHr5VEuM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=rylkJQMFWXA:H77xHr5VEuM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JeremyInMotion?a=rylkJQMFWXA:H77xHr5VEuM:lUugP6SVGzY"><img src="http://feeds.feedburner.com/~ff/JeremyInMotion?i=rylkJQMFWXA:H77xHr5VEuM:lUugP6SVGzY" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://jeremyphillips.org/2010/08/automagically-fixing-failedandsuspended-exchange-2010-databases-with-powershell/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://jeremyphillips.org/2010/01/changes/</feedburner:origLink></item>
	</channel>
</rss>
