<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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/"
	>

<channel>
	<title>risual support blog &#187; Exchange 2010</title>
	<atom:link href="http://support.risualblogs.com/blog/tag/exchange-2010/feed/" rel="self" type="application/rss+xml" />
	<link>http://support.risualblogs.com/blog</link>
	<description>notes from the frontline</description>
	<lastBuildDate>Tue, 07 Feb 2012 13:33:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Exchange 2010 content index state crawling</title>
		<link>http://support.risualblogs.com/blog/2011/12/22/exchange-2010-content-index-state-crawling/</link>
		<comments>http://support.risualblogs.com/blog/2011/12/22/exchange-2010-content-index-state-crawling/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 14:08:00 +0000</pubDate>
		<dc:creator>paulw</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Exchange 2010]]></category>

		<guid isPermaLink="false">http://support.risualblogs.com/blog/2011/12/22/exchange-2010-content-index-state-crawling/</guid>
		<description><![CDATA[We have set up DAG monitoring scripts for one of our customers which tell us the status of all the mailbox copies and we noticed that one of the database copies had been stuck in a status of “Crawling” for over a day. To rectify this problem we did the following: 1. Log onto the [...]]]></description>
			<content:encoded><![CDATA[<p>We have set up DAG monitoring scripts for one of our customers which tell us the status of all the mailbox copies and we noticed that one of the database copies had been stuck in a status of “Crawling” for over a day. </p>
<p>To rectify this problem we did the following:</p>
<p>1. Log onto the affected server and open up services. </p>
<p>2. Restart the “Microsoft Exchange Search Indexer” service: </p>
<p><a href="http://support.risualblogs.com/blog/files/2011/12/image9.png"><img style="border-bottom: 0px;border-left: 0px;padding-left: 0px;padding-right: 0px;border-top: 0px;border-right: 0px;padding-top: 0px" border="0" alt="image" src="http://support.risualblogs.com/blog/files/2011/12/image_thumb9.png" width="539" height="17" /></a></p>
<p>3. Run the following PowerShell command in EMC: </p>
<p>Update-MailboxDatabaseCopy –Identity DATABASE\SERVER –CatalogOnly</p>
<p>This will update the search index of the database and then you can run the following command to ensure that the database index is now healthy: </p>
<p>Get-MailboxDatabaseCopyStatus -Identity DATABASE\SERVER</p>
<p><a href="http://support.risualblogs.com/blog/files/2011/12/image10.png"><img style="border-bottom: 0px;border-left: 0px;margin: 0px;padding-left: 0px;padding-right: 0px;border-top: 0px;border-right: 0px;padding-top: 0px" border="0" alt="image" src="http://support.risualblogs.com/blog/files/2011/12/image_thumb10.png" width="119" height="77" /></a></p>
<p>Cheers</p>
<p>Paul </p>
]]></content:encoded>
			<wfw:commentRss>http://support.risualblogs.com/blog/2011/12/22/exchange-2010-content-index-state-crawling/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Running Exchange PowerShell as Scheduled Task</title>
		<link>http://support.risualblogs.com/blog/2011/12/01/running-exchange-powershell-as-scheduled-task/</link>
		<comments>http://support.risualblogs.com/blog/2011/12/01/running-exchange-powershell-as-scheduled-task/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 14:52:22 +0000</pubDate>
		<dc:creator>paulw</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Powershell]]></category>

		<guid isPermaLink="false">http://support.risualblogs.com/blog/2011/12/01/running-exchange-powershell-as-scheduled-task/</guid>
		<description><![CDATA[If you want to run any of the Exchange PowerShell commands from a standard PowerShell environment then you simply need to add in the following line in order to run it as if it is an Exchange Management Console: Add-PSSnapin Microsoft.Exchange.Management.PowerShell.E2010 For example, the script below will output the size of the Exchange Databases to [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to run any of the Exchange PowerShell commands from a standard PowerShell environment then you simply need to add in the following line in order to run it as if it is an Exchange Management Console:</p>
<p><strong>Add-PSSnapin Microsoft.Exchange.Management.PowerShell.E2010</strong></p>
<p>For example, the script below will output the size of the Exchange Databases to a file and can be run as a scheduled task:</p>
<p>&nbsp;</p>
<p><em>Add-PSSnapin Microsoft.Exchange.Management.PowerShell.E2010</em></p>
<p><em>Get-MailboxDatabase –Status | fl name, databasesize | out-file C:\dbsize.txt </em></p>
<p>&nbsp;</p>
<p>What we can do then is save the above script to a .ps1 file and then edit the action to start PowerShell.exe and put the arguments as the script that you want to run:</p>
<p><a href="http://support.risualblogs.com/blog/files/2011/12/image.png"><img style="padding-left: 0px;padding-right: 0px;float: none;margin-left: auto;margin-right: auto;padding-top: 0px;border: 0px" src="http://support.risualblogs.com/blog/files/2011/12/image_thumb.png" border="0" alt="image" width="394" height="214" /></a></p>
<p>This can be set up with the usual Scheduled Task settings and with the PowerShell snap-in for Exchange added in should be able to use the Exchange PowerShell commands.</p>
<p>Cheers</p>
<p>Paul</p>
]]></content:encoded>
			<wfw:commentRss>http://support.risualblogs.com/blog/2011/12/01/running-exchange-powershell-as-scheduled-task/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exchange 2010&#8211;Get mailboxes above certain size</title>
		<link>http://support.risualblogs.com/blog/2011/10/17/exchange-2010get-mailboxes-above-certain-size/</link>
		<comments>http://support.risualblogs.com/blog/2011/10/17/exchange-2010get-mailboxes-above-certain-size/#comments</comments>
		<pubDate>Mon, 17 Oct 2011 15:03:54 +0000</pubDate>
		<dc:creator>paulw</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Exchange 2010]]></category>

		<guid isPermaLink="false">http://support.risualblogs.com/blog/2011/10/17/exchange-2010get-mailboxes-above-certain-size/</guid>
		<description><![CDATA[Here is a PowerShell command that can be used to fetch the mailbox sizes that are over a certain amount of total item size: get-mailbox &#124; Get-MailboxStatistics &#124; where {$_.TotalItemSize -ge 600MB} The script above can be simply amended to the amount of MB or GB in size that you want to find out. So, [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a PowerShell command that can be used to fetch the mailbox sizes that are over a certain amount of total item size: </p>
<p><strong>get-mailbox | Get-MailboxStatistics | where {$_.TotalItemSize -ge 600MB}</strong></p>
<p>The script above can be simply amended to the amount of MB or GB in size that you want to find out. So, for example, if you change the value after <strong>–ge</strong> (greater or equal to) to 6GB then it will search for all mailboxes that are equal to or greater than 6GB in size. </p>
<p>It could be particularly useful for anyone looking to implement database limits to find out if there are any users that would be affected. </p>
<p>Cheers</p>
<p>Paul&#160; </p>
]]></content:encoded>
			<wfw:commentRss>http://support.risualblogs.com/blog/2011/10/17/exchange-2010get-mailboxes-above-certain-size/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exchange 2010 Command to Set the Amount of Days the Lagged  Database Copy is Lagged</title>
		<link>http://support.risualblogs.com/blog/2011/09/30/exchange-2010-command-to-set-the-amount-of-days-the-lagged-database-copy-is-lagged/</link>
		<comments>http://support.risualblogs.com/blog/2011/09/30/exchange-2010-command-to-set-the-amount-of-days-the-lagged-database-copy-is-lagged/#comments</comments>
		<pubDate>Fri, 30 Sep 2011 15:14:27 +0000</pubDate>
		<dc:creator>Daniel Davies</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[support]]></category>

		<guid isPermaLink="false">http://support.risualblogs.com/blog/2011/09/30/exchange-2010-command-to-set-the-amount-of-days-the-lagged-database-copy-is-lagged/</guid>
		<description><![CDATA[Here&#8217;s a quick command that will set the amount of days your lagged database is lagged for Set-MailboxDatabaseCopy –Identity “DatabaseName\ServerName” –ReplayLagTime “7.0:0:0” The Above command will set a lag retention of 7 days, but change the days to what you need (Please note the Maximum is 14 Days)]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a quick command that will set the amount of days your lagged database is lagged for</p>
<p><strong>Set-MailboxDatabaseCopy –Identity “DatabaseName\ServerName” –ReplayLagTime “7.0:0:0”</strong></p>
<p>The Above command will set a lag retention of 7 days, but change the days to what you need (Please note the Maximum is 14 Days) <img class="wlEmoticon wlEmoticon-smile" style="border-style: none" src="http://support.risualblogs.com/blog/files/2011/09/wlEmoticon-smile5.png" alt="Smile" /></p>
]]></content:encoded>
			<wfw:commentRss>http://support.risualblogs.com/blog/2011/09/30/exchange-2010-command-to-set-the-amount-of-days-the-lagged-database-copy-is-lagged/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Outlook Web App isn&#8217;t available. If the problem continues, please contact your helpdesk.</title>
		<link>http://support.risualblogs.com/blog/2011/09/27/outlook-web-app-isnt-available-if-the-problem-continues-please-contact-your-helpdesk/</link>
		<comments>http://support.risualblogs.com/blog/2011/09/27/outlook-web-app-isnt-available-if-the-problem-continues-please-contact-your-helpdesk/#comments</comments>
		<pubDate>Tue, 27 Sep 2011 16:18:11 +0000</pubDate>
		<dc:creator>Jovan Davis</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[CAS]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[OWA]]></category>
		<category><![CDATA[Proxy]]></category>

		<guid isPermaLink="false">http://support.risualblogs.com/blog/2011/09/27/outlook-web-app-isnt-available-if-the-problem-continues-please-contact-your-helpdesk/</guid>
		<description><![CDATA[You receive the error below when attempting to login to Outlook Web Access (OWA). In an environment with multiple Client Access (CAS) servers where CAS proxying is being used: Solution: On the target CAS server, Ensure that Windows Integrated Authorisation is the only the authorisation method enabled on the OWA and ECP virtual directories.]]></description>
			<content:encoded><![CDATA[<p>You receive the error below when attempting to login to Outlook Web Access (OWA). In an environment with multiple Client Access (CAS) servers where CAS proxying is being used:</p>
<p><a href="http://support.risualblogs.com/blog/files/2011/09/image7.png"><img style="border-bottom: 0px;border-left: 0px;padding-left: 0px;padding-right: 0px;border-top: 0px;border-right: 0px;padding-top: 0px" border="0" alt="image" src="http://support.risualblogs.com/blog/files/2011/09/image_thumb7.png" width="685" height="115" /></a></p>
<p><strong>Solution:</strong></p>
<p>On the target CAS server, Ensure that Windows Integrated Authorisation is the only the authorisation method enabled on the <strong>OWA </strong>and <strong>ECP</strong> virtual directories.</p>
]]></content:encoded>
			<wfw:commentRss>http://support.risualblogs.com/blog/2011/09/27/outlook-web-app-isnt-available-if-the-problem-continues-please-contact-your-helpdesk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Database Replay Lag Times in Exchange 2010</title>
		<link>http://support.risualblogs.com/blog/2011/09/27/get-database-replay-lag-times-in-exchange-2010/</link>
		<comments>http://support.risualblogs.com/blog/2011/09/27/get-database-replay-lag-times-in-exchange-2010/#comments</comments>
		<pubDate>Tue, 27 Sep 2011 15:34:49 +0000</pubDate>
		<dc:creator>paulw</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Exchange 2010]]></category>

		<guid isPermaLink="false">http://support.risualblogs.com/blog/2011/09/27/get-database-replay-lag-times-in-exchange-2010/</guid>
		<description><![CDATA[Just a quick post to let you know how you can get the lag times that are set on the databases if you have any configured in your DAG: Get-MailboxDatabase –Identity dbname -Status&#160; &#124; Format-List replaylagtimes This should output something similar to this: Hope this helps Paul]]></description>
			<content:encoded><![CDATA[<p>Just a quick post to let you know how you can get the lag times that are set on the databases if you have any configured in your DAG: </p>
<p><em>Get-MailboxDatabase –Identity <strong>dbname</strong> -Status&#160; | Format-List replaylagtimes</em></p>
<p>This should output something similar to this:</p>
<p><a href="http://support.risualblogs.com/blog/files/2011/09/image6.png"><img style="border-right-width: 0px;padding-left: 0px;padding-right: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-width: 0px;padding-top: 0px" border="0" alt="image" src="http://support.risualblogs.com/blog/files/2011/09/image_thumb6.png" width="600" height="46" /></a></p>
<p>Hope this helps</p>
<p>Paul</p>
]]></content:encoded>
			<wfw:commentRss>http://support.risualblogs.com/blog/2011/09/27/get-database-replay-lag-times-in-exchange-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exchange 2010 issue where GAL is blank when running Outlook in online mode</title>
		<link>http://support.risualblogs.com/blog/2011/09/21/exchange-2010-issue-where-gal-is-blank-when-running-outlook-in-online-mode/</link>
		<comments>http://support.risualblogs.com/blog/2011/09/21/exchange-2010-issue-where-gal-is-blank-when-running-outlook-in-online-mode/#comments</comments>
		<pubDate>Wed, 21 Sep 2011 11:56:49 +0000</pubDate>
		<dc:creator>Daniel Davies</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[GAL]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[support]]></category>

		<guid isPermaLink="false">http://support.risualblogs.com/blog/2011/09/21/exchange-2010-issue-where-gal-is-blank-when-running-outlook-in-online-mode/</guid>
		<description><![CDATA[We had an issue recently when we migrated some exchange 2003 mailboxes onto an Exchange 2010 (Please note Exchange 2010 was SP1) Environment. Basically after the migration all migrated users using Outlook in online mode could only see a blank Global Address List. After looking into the issue we found that the resolution was to [...]]]></description>
			<content:encoded><![CDATA[<p>We had an issue recently when we migrated some exchange 2003 mailboxes onto an Exchange 2010 (Please note Exchange 2010 was SP1) Environment.</p>
<p>Basically after the migration all migrated users using Outlook in online mode could only see a blank Global Address List.</p>
<p><a href="http://support.risualblogs.com/blog/files/2011/09/clip_image002.jpg"><img style="padding-left: 0px;padding-right: 0px;padding-top: 0px;border: 0px" src="http://support.risualblogs.com/blog/files/2011/09/clip_image002_thumb.jpg" border="0" alt="clip_image002" width="406" height="341" /></a></p>
<p>After looking into the issue we found that the resolution was to clear the value from the following attribute “<strong>msExchQueryBaseDN”</strong> via ADSIEDIT for the effected user.</p>
<p>After clearing the value the GAL suddenly appeared correctly <img class="wlEmoticon wlEmoticon-smile" style="border-style: none" src="http://support.risualblogs.com/blog/files/2011/09/wlEmoticon-smile3.png" alt="Smile" /></p>
<p>I believe Microsoft are looking into sorting this issue in Exchange 2010 SP2.</p>
]]></content:encoded>
			<wfw:commentRss>http://support.risualblogs.com/blog/2011/09/21/exchange-2010-issue-where-gal-is-blank-when-running-outlook-in-online-mode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exchange 2010 issue &#8220;Detected catalog corruption for database&#8221;</title>
		<link>http://support.risualblogs.com/blog/2011/09/20/exchange-2010-issue-detected-catalog-corruption-for-database/</link>
		<comments>http://support.risualblogs.com/blog/2011/09/20/exchange-2010-issue-detected-catalog-corruption-for-database/#comments</comments>
		<pubDate>Tue, 20 Sep 2011 14:54:25 +0000</pubDate>
		<dc:creator>Daniel Davies</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[support]]></category>

		<guid isPermaLink="false">http://support.risualblogs.com/blog/2011/09/20/exchange-2010-issue-detected-catalog-corruption-for-database/</guid>
		<description><![CDATA[We came across an issues recently where one of our Exchange servers in a DAG started having the below errors appear in it’s Event Log. Event ID 5301 Detected catalog corruption for database Database1 Event ID 123 At &#8217;9/20/2011 3:17:57 PM&#8217; the Microsoft Exchange Information Store Database ‘Database1’ copy on this server experienced a corrupted [...]]]></description>
			<content:encoded><![CDATA[<p>We came across an issues recently where one of our Exchange servers in a DAG started having the below errors appear in it’s Event Log.</p>
<p><strong>Event ID 5301</strong></p>
<p><strong><span style="color: #ff0000">Detected catalog corruption for database Database1</span></strong></p>
<p><strong>Event ID 123</strong></p>
<p><span style="color: #ff0000"><strong>At &#8217;9/20/2011 3:17:57 PM&#8217; the Microsoft Exchange Information Store Database ‘Database1’ copy on this server experienced a corrupted search catalog. Consult the event log on the server for other &#8220;ExchangeStoreDb&#8221; and &#8220;MSExchange Search Indexer&#8221; events for more specific information about the failure. Reseeding the catalog is recommended via the &#8216;Update-MailboxDatabaseCopy&#8217; task.</strong></span></p>
<p>Basically the events were pointing to a corrupted catalog, so we simply fixed this by reseeding the catalog from another server that has a valid copy of the catlog via the following command</p>
<p><strong>“Update-MailboxDatabaseCopy –Identity <span style="color: #ff0000">Database1\Servername</span> –CatalogOnly”</strong></p>
<p>After running the above the errors disappeared<strong> <img class="wlEmoticon wlEmoticon-smile" style="border-style: none" src="http://support.risualblogs.com/blog/files/2011/09/wlEmoticon-smile2.png" alt="Smile" /></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://support.risualblogs.com/blog/2011/09/20/exchange-2010-issue-detected-catalog-corruption-for-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exchange 2010 SP1 Update 5 Released</title>
		<link>http://support.risualblogs.com/blog/2011/09/07/exchange-2010-sp1-update-5-released/</link>
		<comments>http://support.risualblogs.com/blog/2011/09/07/exchange-2010-sp1-update-5-released/#comments</comments>
		<pubDate>Wed, 07 Sep 2011 16:07:56 +0000</pubDate>
		<dc:creator>Daniel Davies</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[support]]></category>

		<guid isPermaLink="false">http://support.risualblogs.com/blog/2011/09/07/exchange-2010-sp1-update-5-released/</guid>
		<description><![CDATA[Just to let you know Exchange 2010 Sp1 Rollup 5 has been released. We have been running it now for 2 weeks in our environment and have noticed no issues with it Here is the link to the update http://www.microsoft.com/download/en/details.aspx?displaylang=en&#38;id=27193]]></description>
			<content:encoded><![CDATA[<p>Just to let you know Exchange 2010 Sp1 Rollup 5 has been released. We have been running it now for 2 weeks in our environment and have noticed no issues with it <img class="wlEmoticon wlEmoticon-smile" style="border-style: none" src="http://support.risualblogs.com/blog/files/2011/09/wlEmoticon-smile1.png" alt="Smile" /></p>
<p>Here is the link to the update <a title="http://www.microsoft.com/download/en/details.aspx?displaylang=en&amp;id=27193" href="http://www.microsoft.com/download/en/details.aspx?displaylang=en&amp;id=27193">http://www.microsoft.com/download/en/details.aspx?displaylang=en&amp;id=27193</a></p>
]]></content:encoded>
			<wfw:commentRss>http://support.risualblogs.com/blog/2011/09/07/exchange-2010-sp1-update-5-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RMS Shared Identity user FederatedEmail.4c1f4d8b-8179-4148-93bf-00a95fa1e042 not found while installing SP1 for Exchange 2010</title>
		<link>http://support.risualblogs.com/blog/2011/08/26/rms-shared-identity-user-federatedemail-4c1f4d8b-8179-4148-93bf-00a95fa1e042-not-found-while-installing-sp1-for-exchange-2010/</link>
		<comments>http://support.risualblogs.com/blog/2011/08/26/rms-shared-identity-user-federatedemail-4c1f4d8b-8179-4148-93bf-00a95fa1e042-not-found-while-installing-sp1-for-exchange-2010/#comments</comments>
		<pubDate>Fri, 26 Aug 2011 15:38:11 +0000</pubDate>
		<dc:creator>Jovan Davis</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[SP1]]></category>

		<guid isPermaLink="false">http://support.risualblogs.com/blog/2011/08/26/rms-shared-identity-user-federatedemail-4c1f4d8b-8179-4148-93bf-00a95fa1e042-not-found-while-installing-sp1-for-exchange-2010/</guid>
		<description><![CDATA[While installing Service Pack 1 on an Exchange UM server the following error was received: Solution: Run Setup.com /PrepareAD from the SP1 source files to create the RMS Shared Identity User]]></description>
			<content:encoded><![CDATA[<p>While installing Service Pack 1 on an Exchange UM server the following error was received:</p>
<p> <a href="http://support.risualblogs.com/blog/files/2011/08/clip_image0024.jpg"><img style="border-bottom: 0px;border-left: 0px;padding-left: 0px;padding-right: 0px;border-top: 0px;border-right: 0px;padding-top: 0px" border="0" alt="clip_image002[4]" src="http://support.risualblogs.com/blog/files/2011/08/clip_image0024_thumb.jpg" width="578" height="506" /></a>
<p><strong>Solution:</strong></p>
<p>Run <strong>Setup.com /PrepareAD</strong> from the SP1 source files to create the RMS Shared Identity User</p>
]]></content:encoded>
			<wfw:commentRss>http://support.risualblogs.com/blog/2011/08/26/rms-shared-identity-user-federatedemail-4c1f4d8b-8179-4148-93bf-00a95fa1e042-not-found-while-installing-sp1-for-exchange-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

