<?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>Exchange Server Pro</title>
	
	<link>http://exchangeserverpro.com</link>
	<description>Microsoft Exchange Server News - Tips - Tutorials</description>
	<lastBuildDate>Wed, 08 Feb 2012 13:00:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/ExchangeServerPro" /><feedburner:info uri="exchangeserverpro" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>ExchangeServerPro</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Get-MailboxReport.ps1 – PowerShell Script to Generate Mailbox Reports</title>
		<link>http://feedproxy.google.com/~r/ExchangeServerPro/~3/abcuVKUg4m4/powershell-script-create-mailbox-size-report-exchange-server-2010</link>
		<comments>http://exchangeserverpro.com/powershell-script-create-mailbox-size-report-exchange-server-2010#comments</comments>
		<pubDate>Mon, 06 Feb 2012 12:05:54 +0000</pubDate>
		<dc:creator>Paul Cunningham</dc:creator>
				<category><![CDATA[Solutions]]></category>
		<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Mailboxes]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Reporting]]></category>

		<guid isPermaLink="false">http://exchangeserverpro.com/?p=4170</guid>
		<description><![CDATA[This PowerShell script produces a nicely formatted mailbox size report for Exchange Server 2010 or 2007]]></description>
			<content:encoded><![CDATA[<p>One of the <a href="http://exchangeserverpro.com">Exchange Server</a> administration tasks I perform almost every day is creating mailbox size reports. There are a few different reasons that I create these reports, such as planning a mailbox migration project, responding to a storage capacity alert for a particular database, or providing a specific team of people with a report of their mailbox sizes.</p>
<p>Now it is pretty easy to <a href="http://exchangeserverpro.com/browsing-mailbox-databases-in-exchange-2007-and-2010">get the sizes for Exchange mailboxes</a> and to handle the formatting of the<a href="http://exchangeserverpro.com/calculate-exchange-2010-mailbox-sizes-powershell"> Exchange 2010 mailbox statistics</a> so that they are easier to perform calculations on, but it gets a bit boring running those commands day after day.</p>
<p>Even worse, after running the commands to create a CSV report I still had to open that in Excel, remove the unwanted details, use Excel formulas to convert the values from bytes to megabytes, sort them into order, and so on. Again not difficult, just boring after doing it hundreds of times.</p>
<p>So I created a <a href="http://exchangeserverpro.com/tag/powershell">PowerShell</a> script, <strong>Get-MailboxReport.ps1</strong>, to do all of the heavy lifting for me, and I&#8217;m sharing that script with you here.</p>
<p class="alert"><strong>Download the script file here:</strong> <a class="downloadlink" href="http://exchangeserverpro.com/wp-content/plugins/download-monitor/download.php?id=Get-MailboxReport.zip" title="Version 1.1 downloaded 298 times" >Get-MailboxReport.ps1</a> (downloaded 298 times so far)</p>
<p>Let&#8217;s take a look at how the script works. Here if a video to demonstrate:<br />
<iframe src="http://www.youtube.com/embed/lEn6mjY4zws?rel=0" frameborder="0" width="600" height="437"></iframe></p>
<p>I&#8217;ve included help information within the script itself so you can use Get-Help to discover how to run the script.</p>
<pre>[PS] C:\Scripts\demo&gt;Get-Help .\Get-MailboxReport.ps1

NAME
    C:\Scripts\demo\Get-MailboxReport.ps1

SYNOPSIS
    Get-MailboxReport.ps1 - Mailbox report generation script.

SYNTAX
    C:\Scripts\demo\Get-MailboxReport.ps1 [-database ] []

    C:\Scripts\demo\Get-MailboxReport.ps1 [-file ] []

    C:\Scripts\demo\Get-MailboxReport.ps1 [-server ] []

    C:\Scripts\demo\Get-MailboxReport.ps1 [-mailbox ] []

    C:\Scripts\demo\Get-MailboxReport.ps1 [-all] []

DESCRIPTION
    Generates a report of useful information for
    the specified server, database, mailbox or list of mailboxes.
    Use only one parameter at a time depending on the scope of
    your mailbox report.

RELATED LINKS
    For more script details, a video demo, or to give feedback please go to:

http://exchangeserverpro.com/powershell-script-create-mailbox-size-report-exchange-server-2010

REMARKS
    To see the examples, type: "get-help C:\Scripts\demo\Get-MailboxReport.ps1 -examples".
    For more information, type: "get-help C:\Scripts\demo\Get-MailboxReport.ps1 -detailed".
    For technical information, type: "get-help C:\Scripts\demo\Get-MailboxReport.ps1 -full".</pre>
<p>Depending on which parameter you use the output will vary.</p>
<ul>
<li>If you use the <strong>-mailbox</strong> parameter to query a single mailbox, then the output will appear in the console window. I don&#8217;t really see the need to output a single mailbox&#8217;s details to a CSV file.</li>
<li>If you use any of the other parameters, <strong>-server</strong>, <strong>-database</strong>, <strong>-file</strong>, or <strong>-all</strong>, the output will be written to a CSV file in the same folder you&#8217;re running the script from.</li>
</ul>
<p>Once you&#8217;ve generated the CSV report you can open it with Excel and begin to analyze the data.</p>
<p class="alert"><strong>Download the script file here:</strong> <a class="downloadlink" href="http://exchangeserverpro.com/wp-content/plugins/download-monitor/download.php?id=Get-MailboxReport.zip" title="Version 1.1 downloaded 298 times" >Get-MailboxReport.ps1</a> (downloaded 298 times so far)</p>
<p>Change Log:</p>
<ul>
<li>6/02/2012 &#8211; V1.0 &#8211; Initial version</li>
</ul>
<h3  class="related_post_title">Related posts:</h3><ul class="related_post"><li><a href="http://exchangeserverpro.com/move-exchange-mailboxes-text-file-powershell" title="How to Move Exchange Mailboxes in a Text File using PowerShell">How to Move Exchange Mailboxes in a Text File using PowerShell</a></li><li><a href="http://exchangeserverpro.com/test-mailflow-exchange-2003-servers" title="Using Test-Mailflow with Exchange 2003 Servers">Using Test-Mailflow with Exchange 2003 Servers</a></li><li><a href="http://exchangeserverpro.com/powershell-script-check-exchange-2010-database-backups" title="PowerShell Script: Check Exchange 2010 Database Backups">PowerShell Script: Check Exchange 2010 Database Backups</a></li><li><a href="http://exchangeserverpro.com/exchange-2010-test-servicehealth" title="Using Test-ServiceHealth for Exchange Server Health Checks">Using Test-ServiceHealth for Exchange Server Health Checks</a></li><li><a href="http://exchangeserverpro.com/exchange-2010-online-mailbox-moves" title="Exchange 2010 FAQ: How to Minimise Downtime During Mailbox Migration from Exchange 2007">Exchange 2010 FAQ: How to Minimise Downtime During Mailbox Migration from Exchange 2007</a></li></ul><hr />
<p>This article <a href="http://exchangeserverpro.com/powershell-script-create-mailbox-size-report-exchange-server-2010">Get-MailboxReport.ps1 &#8211; PowerShell Script to Generate Mailbox Reports</a> is © 2012 ExchangeServerPro.com</p>
<p>Get more <a href="http://exchangeserverpro.com">Exchange Server tips</a> at <a href="http://exchangeserverpro.com">ExchangeServerPro.com</a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=abcuVKUg4m4:IvbIrHZbSfY:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=abcuVKUg4m4:IvbIrHZbSfY:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=abcuVKUg4m4:IvbIrHZbSfY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=abcuVKUg4m4:IvbIrHZbSfY:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=abcuVKUg4m4:IvbIrHZbSfY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=abcuVKUg4m4:IvbIrHZbSfY:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=abcuVKUg4m4:IvbIrHZbSfY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=abcuVKUg4m4:IvbIrHZbSfY:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=abcuVKUg4m4:IvbIrHZbSfY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=abcuVKUg4m4:IvbIrHZbSfY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=abcuVKUg4m4:IvbIrHZbSfY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ExchangeServerPro/~4/abcuVKUg4m4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://exchangeserverpro.com/powershell-script-create-mailbox-size-report-exchange-server-2010/feed</wfw:commentRss>
		<slash:comments>29</slash:comments>
		<feedburner:origLink>http://exchangeserverpro.com/powershell-script-create-mailbox-size-report-exchange-server-2010</feedburner:origLink></item>
		<item>
		<title>Update Rollup 6 for Exchange 2007 SP3 Released</title>
		<link>http://feedproxy.google.com/~r/ExchangeServerPro/~3/JvdPF2hzPoM/update-rollup-6-exchange-2007-sp3-released</link>
		<comments>http://exchangeserverpro.com/update-rollup-6-exchange-2007-sp3-released#comments</comments>
		<pubDate>Fri, 03 Feb 2012 12:36:01 +0000</pubDate>
		<dc:creator>Paul Cunningham</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Update Rollup]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://exchangeserverpro.com/?p=4422</guid>
		<description><![CDATA[Microsoft has announced the release of Update Rollup 6 for Exchange Server 2007 Service Pack 3.]]></description>
			<content:encoded><![CDATA[<p>Microsoft has announced the release of Update Rollup 6 for <a href="http://exchangeserverpro.com">Exchange Server 2007</a> Service Pack 3.</p>
<p>From the <a href="http://blogs.technet.com/b/exchange/archive/2012/01/26/released-update-rollup-3-for-exchange-2007-service-pack-3.aspx">Microsoft Exchange Team blog</a>:</p>
<blockquote><p>This update contains a number of customer-reported and internally found issues since the release of RU5. See <a href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;2608656">KB 2608656</a>: Description of Update Rollup 6 for Exchange Server 2007 Service Pack 3&#8242; for more details.</p>
<p>We would like to specifically call out the following fixes which are included in this release:</p>
<ul>
<li><acronym title="Daylight Savings Time">DST</acronym> Cadence Release for Dec 2011 &#8211; Exchange 2007</li>
<li><a title="Go to KBA 22656040" href="http://support.microsoft.com/kb/2656040/">22656040</a> An Exchange Server 2007 Client Access server may respond slowly or stop responding when users try to synchronize the Exchange ActiveSync devices with their mailboxes</li>
<li><a title="Go to KBA 2298852" href="http://support.microsoft.com/kb/2498852/">2498852</a> &#8221;0&#215;80041606&#8243; error message when you perform a prefix search by using Outlook in online mode in an Exchange Server 2007 environment</li>
<li><a title="Go to KBA 22653334" href="http://support.microsoft.com/kb/2653334/">22653334</a> The reseed process is unsuccessful on the SCR passive node when the circular logging feature is enabled in an Exchange Server 2007 environment</li>
<li><a title="Go to KBA 22617784" href="http://support.microsoft.com/kb/2617784/">22617784</a> Journal reports are expired or lost when the Microsoft Exchange Transport service is restarted in an Exchange Server 2007 environment</li>
<li><a title="Go to KBA 2289607" href="http://support.microsoft.com/kb/2289607">2289607</a> The week numbers displayed in OWA do not match the week numbers displayed in Outlook for English users and French users in an Exchange Server 2007 environment</li>
</ul>
</blockquote>
<p>Update Rollup 6 can be downloaded <a href="http://www.microsoft.com/download/en/details.aspx?id=28751">here</a>.</p>
<h3  class="related_post_title">Related posts:</h3><ul class="related_post"><li><a href="http://exchangeserverpro.com/risk-database-corruption-exchange-2007-sp3-update-rollup-3" title="Serious Risk of Database Corruption with Exchange 2007 SP3 Update Rollup 3">Serious Risk of Database Corruption with Exchange 2007 SP3 Update Rollup 3</a></li><li><a href="http://exchangeserverpro.com/update-rollup-3-exchange-2010-sp1-exchange-2007-sp3" title="Update Rollup 3 for Exchange 2010 SP1 and Exchange 2007 SP3">Update Rollup 3 for Exchange 2010 SP1 and Exchange 2007 SP3</a></li><li><a href="http://exchangeserverpro.com/exchange-server-2007-sp2-update-rollup-2-released" title="Exchange Server 2007 SP2 Update Rollup 2 Released">Exchange Server 2007 SP2 Update Rollup 2 Released</a></li><li><a href="http://exchangeserverpro.com/exchange-server-2007-sp1-update-rollup-8-released" title="Exchange Server 2007 SP1 Update Rollup 8 Released">Exchange Server 2007 SP1 Update Rollup 8 Released</a></li><li><a href="http://exchangeserverpro.com/exchange-server-2007-update-rollup-6-critical" title="Exchange Server 2007 Update Rollup 6 (Critical)">Exchange Server 2007 Update Rollup 6 (Critical)</a></li></ul><hr />
<p>This article <a href="http://exchangeserverpro.com/update-rollup-6-exchange-2007-sp3-released">Update Rollup 6 for Exchange 2007 SP3 Released</a> is © 2012 ExchangeServerPro.com</p>
<p>Get more <a href="http://exchangeserverpro.com">Exchange Server tips</a> at <a href="http://exchangeserverpro.com">ExchangeServerPro.com</a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=JvdPF2hzPoM:r2RtsO-h5LA:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=JvdPF2hzPoM:r2RtsO-h5LA:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=JvdPF2hzPoM:r2RtsO-h5LA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=JvdPF2hzPoM:r2RtsO-h5LA:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=JvdPF2hzPoM:r2RtsO-h5LA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=JvdPF2hzPoM:r2RtsO-h5LA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=JvdPF2hzPoM:r2RtsO-h5LA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=JvdPF2hzPoM:r2RtsO-h5LA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=JvdPF2hzPoM:r2RtsO-h5LA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=JvdPF2hzPoM:r2RtsO-h5LA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=JvdPF2hzPoM:r2RtsO-h5LA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ExchangeServerPro/~4/JvdPF2hzPoM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://exchangeserverpro.com/update-rollup-6-exchange-2007-sp3-released/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://exchangeserverpro.com/update-rollup-6-exchange-2007-sp3-released</feedburner:origLink></item>
		<item>
		<title>Google Discontinues Message Continuity</title>
		<link>http://feedproxy.google.com/~r/ExchangeServerPro/~3/8GRvdBOoKyE/google-discontinues-message-continuity</link>
		<comments>http://exchangeserverpro.com/google-discontinues-message-continuity#comments</comments>
		<pubDate>Fri, 03 Feb 2012 12:29:55 +0000</pubDate>
		<dc:creator>Paul Cunningham</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Disaster Recovery]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://exchangeserverpro.com/?p=4419</guid>
		<description><![CDATA[Google has announced the end of their Google Message Continuity offering.]]></description>
			<content:encoded><![CDATA[<p>Google has announced that they are discontinuing Google Message Continuity.</p>
<div id="attachment_2501" class="wp-caption aligncenter" style="width: 610px"><img class="size-full wp-image-2501" title="Google Message Continuity" src="http://exchangeserverpro.com/wp-content/uploads/2010/12/gmc-chart.gif" alt="Google Message Continuity" width="600" height="322" /><p class="wp-caption-text">Google Message Continuity (Source: http://www.google.com/postini/continuity.html)</p></div>
<p><a href="http://exchangeserverpro.com/google-announces-email-continuity-exchange-server">Originally launched</a> as a disaster recovery and business continuity solution for Microsoft Exchange customers it received a <a href="http://www.linkedin.com/groupItem?view=&amp;gid=3681921&amp;type=news&amp;item=289160399&amp;goback=%2Eanp_3681921_1328271474292_1%2Egna_3681921">lukewarm reception</a> from Exchange admins, and according to a <a href="http://googleblog.blogspot.com.au/2012/01/renewing-old-resolutions-for-new-year.html">Google blog post</a> did not see significant uptake.</p>
<blockquote><p>In December 2010 we launched an email disaster recovery product for enterprise customers that use Google&#8217;s cloud to back up emails originally sent or received in an on-premise, Microsoft Exchange system. In the time since we launched, we&#8217;ve seen hundreds of businesses sign up for it. By comparison, in that same time, we&#8217;ve seen millions of businesses move entirely to the cloud with Google Apps, benefitting from disaster recovery capabilities built directly into Apps. Going forward we&#8217;ve decided to focus our efforts on Google Apps and end support for GMC.</p></blockquote>
<p>Read more at the <a href="http://googleblog.blogspot.com.au/2012/01/renewing-old-resolutions-for-new-year.html">Official Google blog</a>.</p>
<h3  class="related_post_title">Related posts:</h3><ul class="related_post"><li><a href="http://exchangeserverpro.com/google-message-continuity-supports-exchange-server-2010" title="Google Message Continuity Now Supports Exchange Server 2010">Google Message Continuity Now Supports Exchange Server 2010</a></li><li><a href="http://exchangeserverpro.com/microsoft-responds-google-message-continuity-launch" title="Microsoft Responds to Google Message Continuity Launch">Microsoft Responds to Google Message Continuity Launch</a></li><li><a href="http://exchangeserverpro.com/exchange-2010-passive-database-copies-included-backups-dag-members" title="Exchange 2010: Are Passive Database Copies Included in Backups of DAG Members?">Exchange 2010: Are Passive Database Copies Included in Backups of DAG Members?</a></li><li><a href="http://exchangeserverpro.com/review-exchange-server-2010-backup-recovery-training" title="Review: Exchange Server 2010 Backup and Recovery Training">Review: Exchange Server 2010 Backup and Recovery Training</a></li><li><a href="http://exchangeserverpro.com/exchange-2010-database-portability-disaster-recovery" title="Exchange Server 2010: Using Database Portability for Disaster Recovery">Exchange Server 2010: Using Database Portability for Disaster Recovery</a></li></ul><hr />
<p>This article <a href="http://exchangeserverpro.com/google-discontinues-message-continuity">Google Discontinues Message Continuity</a> is © 2012 ExchangeServerPro.com</p>
<p>Get more <a href="http://exchangeserverpro.com">Exchange Server tips</a> at <a href="http://exchangeserverpro.com">ExchangeServerPro.com</a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=8GRvdBOoKyE:owZgboHEXmg:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=8GRvdBOoKyE:owZgboHEXmg:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=8GRvdBOoKyE:owZgboHEXmg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=8GRvdBOoKyE:owZgboHEXmg:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=8GRvdBOoKyE:owZgboHEXmg:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=8GRvdBOoKyE:owZgboHEXmg:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=8GRvdBOoKyE:owZgboHEXmg:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=8GRvdBOoKyE:owZgboHEXmg:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=8GRvdBOoKyE:owZgboHEXmg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=8GRvdBOoKyE:owZgboHEXmg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=8GRvdBOoKyE:owZgboHEXmg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ExchangeServerPro/~4/8GRvdBOoKyE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://exchangeserverpro.com/google-discontinues-message-continuity/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://exchangeserverpro.com/google-discontinues-message-continuity</feedburner:origLink></item>
		<item>
		<title>Exchange Server 2012?</title>
		<link>http://feedproxy.google.com/~r/ExchangeServerPro/~3/pW4V8MbqT4M/exchange-server-2012</link>
		<comments>http://exchangeserverpro.com/exchange-server-2012#comments</comments>
		<pubDate>Tue, 31 Jan 2012 02:47:27 +0000</pubDate>
		<dc:creator>Paul Cunningham</dc:creator>
				<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://exchangeserverpro.com/?p=4406</guid>
		<description><![CDATA[Can we expect to see Microsoft release a new version of Exchange Server in 2012?]]></description>
			<content:encoded><![CDATA[<p><img class="alignright  wp-image-4408" title="exchange-logo-300" src="http://exchangeserverpro.com/wp-content/uploads/2012/01/exchange-logo-300.jpg" alt="" width="160" height="160" />Microsoft <a href="http://blogs.office.com/b/office-exec/archive/2012/01/30/quot-office-15-quot-begins-technical-preview.aspx">today announced</a> that they have reached the Technical Preview Program milestone for &#8220;Office 15&#8243; development. Office 15 is the current name of the next generation of Microsoft Office products and services (including server products).</p>
<p>During the Technical Preview Microsoft works with a selection of customers under strict non-disclosure to test their products in real world situations so that the final product releases can be improved.</p>
<p>According to the announcement by PJ Hough, CVP of Development, Microsoft Office Division:</p>
<blockquote><p>With Office 15, for the first time ever, we will simultaneously update our cloud services, servers, and mobile and PC clients for Office, Office 365, <strong>Exchange</strong>, SharePoint, Lync, Project, and Visio.</p></blockquote>
<p>With the Technical Preview program underway Hough lets us know that:</p>
<blockquote><p>&#8230;everyone will have the opportunity to try the Office 15 public beta <strong>later this summer</strong>.</p></blockquote>
<p>Assuming Microsoft is able to release a beta of Exchange 15 by August this year, what does that mean for for a possible RTM in 2012?</p>
<p>Brian Winstead <a href="http://www.windowsitpro.com/blog/exchange-and-outlook-blog-8/exchange-server/exchange-15-insights-141223">put forward his theory</a> in his Windows IT Pro column back in October 2011:</p>
<blockquote><p>If the Exchange team follows the pattern of previous releases, I&#8217;d expect them to release a <strong>public beta for Exchange 15 by mid-year 2012, perhaps as early as April or May, and if all goes well, the final version would be out by the end of next year.</strong> As for the final name, for the past couple of releases, they&#8217;ve looked forward and applied the year after the actual release year. So, Exchange Server 2007 was released at the end of 2006, and Exchange Server 2010 came at the end of 2009. My suspicion is they would avoid the bad luck omen of taking that route if they release in 2012 and might just stick with <strong>Exchange Server 2012</strong>.</p></blockquote>
<p>I tend to agree that it is unlikely we&#8217;ll see a &#8220;2013&#8243; naming for the next generation of Office products.</p>
<p>Exchange Server 2010 was released as a public beta in April 2009, and reached RTM slightly less than 6 months later. So a &#8220;summer&#8221; beta release of &#8220;Exchange 15&#8243; followed by some hard work by Microsoft could see an &#8220;Exchange 2012&#8243; RTM perhaps around late November.</p>
<p>Read Microsoft&#8217;s &#8220;Office 15&#8243; announcement here:</p>
<ul>
<li><a href="http://blogs.office.com/b/office-exec/archive/2012/01/30/quot-office-15-quot-begins-technical-preview.aspx">&#8220;Office 15&#8243; Begins Technical Preview</a></li>
</ul>
<p>&nbsp;</p>
<h3  class="related_post_title">Related posts:</h3><ul class="related_post"><li>Popular posts:</li></ul><hr />
<p>This article <a href="http://exchangeserverpro.com/exchange-server-2012">Exchange Server 2012?</a> is © 2012 ExchangeServerPro.com</p>
<p>Get more <a href="http://exchangeserverpro.com">Exchange Server tips</a> at <a href="http://exchangeserverpro.com">ExchangeServerPro.com</a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=pW4V8MbqT4M:87ZByXBFdm4:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=pW4V8MbqT4M:87ZByXBFdm4:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=pW4V8MbqT4M:87ZByXBFdm4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=pW4V8MbqT4M:87ZByXBFdm4:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=pW4V8MbqT4M:87ZByXBFdm4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=pW4V8MbqT4M:87ZByXBFdm4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=pW4V8MbqT4M:87ZByXBFdm4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=pW4V8MbqT4M:87ZByXBFdm4:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=pW4V8MbqT4M:87ZByXBFdm4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=pW4V8MbqT4M:87ZByXBFdm4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=pW4V8MbqT4M:87ZByXBFdm4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ExchangeServerPro/~4/pW4V8MbqT4M" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://exchangeserverpro.com/exchange-server-2012/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://exchangeserverpro.com/exchange-server-2012</feedburner:origLink></item>
		<item>
		<title>Avoid Running Out of Transaction Log Disk Space on Exchange Servers</title>
		<link>http://feedproxy.google.com/~r/ExchangeServerPro/~3/X6QnPkSeZoE/avoid-running-transaction-log-disk-space-exchange-servers</link>
		<comments>http://exchangeserverpro.com/avoid-running-transaction-log-disk-space-exchange-servers#comments</comments>
		<pubDate>Sat, 28 Jan 2012 12:45:12 +0000</pubDate>
		<dc:creator>Paul Cunningham</dc:creator>
				<category><![CDATA[Solutions]]></category>
		<category><![CDATA[Backups]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Monitoring]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Storage]]></category>

		<guid isPermaLink="false">http://exchangeserverpro.com/?p=4398</guid>
		<description><![CDATA[Don't take the risk that your Exchange Servers will run out of transaction log disk space. Use this script to monitor and alert on failed backups that can cause service outages later on.]]></description>
			<content:encoded><![CDATA[<p>Paul Robichaux&#8217;s <a href="http://www.windowsitpro.com/content2/tabid/4436/catpath/exchange-server/topic/messaging-world-news-142038">recent Windows IT Pro column</a> contains this passage:</p>
<blockquote><p>If you don&#8217;t know when you&#8217;re about to run out of disk space on the log LUN, you&#8217;re totally doing it wrong. It leaves me slack-jawed with astonishment that in 2012 we still have administrators who suffer unplanned downtime due to log volumes filling up because of poor design or problems with backups. Stop the madness! Check your backups regularly and use monitoring, be it however primitive, to ensure that you don&#8217;t have this problem.</p></blockquote>
<p>Paul is referring to <a href="http://blogs.technet.com/b/exchange/archive/2011/11/09/capacity-planning-yes-transaction-log-space-is-critical-to-keeping-your-databases-healthy-and-mounted.aspx">this post</a> on the MS Exchange Team blog, which mentions that:</p>
<blockquote><p>&#8230;the number one reason why our Premier customers open Exchange 2010 critical situations is because Mailbox databases dismount due to running out of disk space on the transaction log LUN.</p></blockquote>
<p>Either I missed that post when it was published a few months ago or I glossed over it and it didn&#8217;t catch my attention enough.</p>
<p>I&#8217;ve been stung by transaction log disks running out of space, even as recently as last year. I work in a very large Exchange environment where backups and storage monitoring are performed by two different teams, both of them outside of my team.</p>
<p>That puts us in the situation where failed backups, combined with either a storage monitoring problem or a human error in the escalation processes can (and has) caused a log volume to fill up. Another situation that can arise is when new servers are provisioned, our help desks begin putting mailboxes on them before they&#8217;ve been added to the backups.</p>
<p>Which is why I wrote this <a href="http://exchangeserverpro.com/set-automated-exchange-2010-database-backup-alert-email">script to check the Exchange database backups</a> and alert my team when they have not been backed up in the 48 hours or more. In fact that script is a better version than the one we run in production (I haven&#8217;t ported over the improvements I later made at home to the original).</p>
<p>Ever since we put it in place that script has alerted us to numerous situations before they could evolve into disasters.</p>
<p>Setting it up as a scheduled task to run daily is a job that will take you less than half an hour. I highly recommend it, not just because I wrote the script, but because it adds a valuable layer of protection to your environment.</p>
<h3  class="related_post_title">Related posts:</h3><ul class="related_post"><li><a href="http://exchangeserverpro.com/set-automated-exchange-2010-database-backup-alert-email" title="How to Set Up an Automated Exchange 2010 Database Backup Alert Email">How to Set Up an Automated Exchange 2010 Database Backup Alert Email</a></li><li><a href="http://exchangeserverpro.com/powershell-script-check-exchange-mailbox-database-backup-time" title="PowerShell Script: Check Exchange Mailbox Database Last Backup Time">PowerShell Script: Check Exchange Mailbox Database Last Backup Time</a></li><li><a href="http://exchangeserverpro.com/health-check-exchange-2010-mailbox-server" title="How to Health Check an Exchange 2010 Mailbox Server">How to Health Check an Exchange 2010 Mailbox Server</a></li><li><a href="http://exchangeserverpro.com/powershell-script-check-exchange-2010-database-backups" title="PowerShell Script: Check Exchange 2010 Database Backups">PowerShell Script: Check Exchange 2010 Database Backups</a></li><li><a href="http://exchangeserverpro.com/exchange-2010-passive-database-copies-included-backups-dag-members" title="Exchange 2010: Are Passive Database Copies Included in Backups of DAG Members?">Exchange 2010: Are Passive Database Copies Included in Backups of DAG Members?</a></li></ul><hr />
<p>This article <a href="http://exchangeserverpro.com/avoid-running-transaction-log-disk-space-exchange-servers">Avoid Running Out of Transaction Log Disk Space on Exchange Servers</a> is © 2012 ExchangeServerPro.com</p>
<p>Get more <a href="http://exchangeserverpro.com">Exchange Server tips</a> at <a href="http://exchangeserverpro.com">ExchangeServerPro.com</a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=X6QnPkSeZoE:rFTb8vK87pU:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=X6QnPkSeZoE:rFTb8vK87pU:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=X6QnPkSeZoE:rFTb8vK87pU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=X6QnPkSeZoE:rFTb8vK87pU:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=X6QnPkSeZoE:rFTb8vK87pU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=X6QnPkSeZoE:rFTb8vK87pU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=X6QnPkSeZoE:rFTb8vK87pU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=X6QnPkSeZoE:rFTb8vK87pU:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=X6QnPkSeZoE:rFTb8vK87pU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=X6QnPkSeZoE:rFTb8vK87pU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=X6QnPkSeZoE:rFTb8vK87pU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ExchangeServerPro/~4/X6QnPkSeZoE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://exchangeserverpro.com/avoid-running-transaction-log-disk-space-exchange-servers/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://exchangeserverpro.com/avoid-running-transaction-log-disk-space-exchange-servers</feedburner:origLink></item>
		<item>
		<title>Exchange 2010 Boot Camp Update</title>
		<link>http://feedproxy.google.com/~r/ExchangeServerPro/~3/pv8GiPV-NRw/exchange-2010-boot-camp-update</link>
		<comments>http://exchangeserverpro.com/exchange-2010-boot-camp-update#comments</comments>
		<pubDate>Mon, 23 Jan 2012 13:32:12 +0000</pubDate>
		<dc:creator>Paul Cunningham</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Boot Camp]]></category>
		<category><![CDATA[Training]]></category>

		<guid isPermaLink="false">http://exchangeserverpro.com/?p=4392</guid>
		<description><![CDATA[I wanted to give you an update on how things are going with the Exchange 2010 Boot Camp. ]]></description>
			<content:encoded><![CDATA[<p>I wanted to give you an update on how things are going with the <a href="http://exchangeserverpro.com/training/">Exchange 2010 Boot Camp</a>. Since I last mentioned it <a href="http://exchangeserverpro.com/register-interest-exchange-2010-boot-camp">here</a> I&#8217;ve been overwhelmed by the response. At last count 831 people from all over the world have registered their interest in this online training. To me that is just amazing.</p>
<p>So, here are a few new bits of information about the Exchange 2010 Boot Camp.</p>
<ul>
<li>I&#8217;m going to open up registrations on <strong>Thursday 26th at 10:00am AEST</strong> (that&#8217;s GMT+10:00). An email will be sent out to everyone who registered their interest.</li>
<li>The first set of registrations will be limited to 50 people. Don&#8217;t panic if you don&#8217;t get in the first time, I&#8217;m just limiting it in case of any technical issues with the website or other bits and pieces involved.</li>
<li>If all goes well for a few days I will open up registrations again and send another email to let you know.</li>
</ul>
<p>In the mean time I&#8217;ve created this quick video to show you what the site looks like right now, so you know what to expect.</p>
<a id="wpfp_93c120647e998962c0a2059835d5530b" style="width:600px; height:450px;" class="flowplayer_container player plain"></a>
<p>If you still haven&#8217;t registered you can head over to the <a href="http://exchangeserverpro.com/training/">Exchange 2010 Boot Camp</a> site now and join the waiting list.</p>
<h3  class="related_post_title">Related posts:</h3><ul class="related_post"><li><a href="http://exchangeserverpro.com/register-interest-exchange-2010-boot-camp" title="Register Your Interest for the Exchange 2010 Boot Camp">Register Your Interest for the Exchange 2010 Boot Camp</a></li><li><a href="http://exchangeserverpro.com/happy-holidays-exchange-server-pro-2011" title="Happy Holidays from Exchange Server Pro">Happy Holidays from Exchange Server Pro</a></li><li><a href="http://exchangeserverpro.com/webinar-invitation-upgrading-exchange-server-2010" title="Webinar Invitation: Upgrading to Exchange Server 2010">Webinar Invitation: Upgrading to Exchange Server 2010</a></li><li><a href="http://exchangeserverpro.com/exchange-server-2010-training" title="Exchange Server 2010 Training">Exchange Server 2010 Training</a></li><li><a href="http://exchangeserverpro.com/free-exchange-server-technical-education-videos" title="Free Exchange Server Technical Education Videos">Free Exchange Server Technical Education Videos</a></li></ul><hr />
<p>This article <a href="http://exchangeserverpro.com/exchange-2010-boot-camp-update">Exchange 2010 Boot Camp Update</a> is © 2012 ExchangeServerPro.com</p>
<p>Get more <a href="http://exchangeserverpro.com">Exchange Server tips</a> at <a href="http://exchangeserverpro.com">ExchangeServerPro.com</a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=pv8GiPV-NRw:D_H-9VTT_Iw:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=pv8GiPV-NRw:D_H-9VTT_Iw:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=pv8GiPV-NRw:D_H-9VTT_Iw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=pv8GiPV-NRw:D_H-9VTT_Iw:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=pv8GiPV-NRw:D_H-9VTT_Iw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=pv8GiPV-NRw:D_H-9VTT_Iw:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=pv8GiPV-NRw:D_H-9VTT_Iw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=pv8GiPV-NRw:D_H-9VTT_Iw:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=pv8GiPV-NRw:D_H-9VTT_Iw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=pv8GiPV-NRw:D_H-9VTT_Iw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=pv8GiPV-NRw:D_H-9VTT_Iw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ExchangeServerPro/~4/pv8GiPV-NRw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://exchangeserverpro.com/exchange-2010-boot-camp-update/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
<enclosure url="http://exchangeserverpro.com/wp-content/uploads/bootcamppreview.mp4" length="5226775" type="video/mp4" />
		<feedburner:origLink>http://exchangeserverpro.com/exchange-2010-boot-camp-update</feedburner:origLink></item>
		<item>
		<title>Register Your Interest for the Exchange 2010 Boot Camp</title>
		<link>http://feedproxy.google.com/~r/ExchangeServerPro/~3/JbjheFbDBT4/register-interest-exchange-2010-boot-camp</link>
		<comments>http://exchangeserverpro.com/register-interest-exchange-2010-boot-camp#comments</comments>
		<pubDate>Mon, 09 Jan 2012 13:00:35 +0000</pubDate>
		<dc:creator>Paul Cunningham</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Boot Camp]]></category>
		<category><![CDATA[Training]]></category>

		<guid isPermaLink="false">http://exchangeserverpro.com/?p=4379</guid>
		<description><![CDATA[Register your details to find out more about the Exchange 2010 Boot Camp, a free online training program for Exchange Server 2010.]]></description>
			<content:encoded><![CDATA[<p class="alert">Update: over 700 people have now registered their interest. If you&#8217;d like to skip the back story and register as well just scroll down and fill in the email signup form below.</p>
<p>Earlier today I <a href="https://twitter.com/exchservpro">tweeted</a> a brief message to see if anybody was interested in an Exchange 2010 online training course that I&#8217;m calling the Exchange 2010 Boot Camp.</p>
<p><img class="aligncenter size-full wp-image-4380" title="exchange-boot-camp-tweet" src="http://exchangeserverpro.com/wp-content/uploads/2012/01/exchange-boot-camp-tweet.jpg" alt="" width="511" height="193" /></p>
<p>There was a very strong response with a lot of people immediately expressing their interest.</p>
<p>So I&#8217;ve already begun making preparations to create the training, but I need to know a little bit more about the people who are interested in attending so that I can design the right lessons for you. Even if you are a complete beginner I want to try and deliver training that will be useful for you.</p>
<p>The Exchange 2010 Boot Camp will be:</p>
<ul>
<li>free to attend</li>
<li>delivered 100% online, so you can do the lessons from anywhere in the world at the times that suit you</li>
<li>delivered using videos/webinars, written lessons, and forums for interaction such as Q&amp;A</li>
</ul>
<p>If that sounds interesting to you and you&#8217;d like to know more please enter your email address in the form below to register your interest. You&#8217;ll be sent a brief survey to help me understand your training needs, as well as announcements when the boot camp is ready to start.</p>
<p><script type="text/javascript" src="http://forms.aweber.com/form/84/550743484.js"></script></p>
<p>If you have any questions please feel free to ask in the comments below or get in touch with me using the <a href="http://exchangeserverpro.com/contact">contact form</a>.</p>
<h3  class="related_post_title">Related posts:</h3><ul class="related_post"><li><a href="http://exchangeserverpro.com/exchange-2010-boot-camp-update" title="Exchange 2010 Boot Camp Update">Exchange 2010 Boot Camp Update</a></li><li><a href="http://exchangeserverpro.com/happy-holidays-exchange-server-pro-2011" title="Happy Holidays from Exchange Server Pro">Happy Holidays from Exchange Server Pro</a></li><li><a href="http://exchangeserverpro.com/webinar-invitation-upgrading-exchange-server-2010" title="Webinar Invitation: Upgrading to Exchange Server 2010">Webinar Invitation: Upgrading to Exchange Server 2010</a></li><li><a href="http://exchangeserverpro.com/exchange-server-2010-training" title="Exchange Server 2010 Training">Exchange Server 2010 Training</a></li><li><a href="http://exchangeserverpro.com/free-exchange-server-technical-education-videos" title="Free Exchange Server Technical Education Videos">Free Exchange Server Technical Education Videos</a></li></ul><hr />
<p>This article <a href="http://exchangeserverpro.com/register-interest-exchange-2010-boot-camp">Register Your Interest for the Exchange 2010 Boot Camp</a> is © 2012 ExchangeServerPro.com</p>
<p>Get more <a href="http://exchangeserverpro.com">Exchange Server tips</a> at <a href="http://exchangeserverpro.com">ExchangeServerPro.com</a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=JbjheFbDBT4:LPY4XNg9jGc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=JbjheFbDBT4:LPY4XNg9jGc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=JbjheFbDBT4:LPY4XNg9jGc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=JbjheFbDBT4:LPY4XNg9jGc:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=JbjheFbDBT4:LPY4XNg9jGc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=JbjheFbDBT4:LPY4XNg9jGc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=JbjheFbDBT4:LPY4XNg9jGc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=JbjheFbDBT4:LPY4XNg9jGc:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=JbjheFbDBT4:LPY4XNg9jGc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=JbjheFbDBT4:LPY4XNg9jGc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=JbjheFbDBT4:LPY4XNg9jGc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ExchangeServerPro/~4/JbjheFbDBT4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://exchangeserverpro.com/register-interest-exchange-2010-boot-camp/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://exchangeserverpro.com/register-interest-exchange-2010-boot-camp</feedburner:origLink></item>
		<item>
		<title>Happy Holidays from Exchange Server Pro</title>
		<link>http://feedproxy.google.com/~r/ExchangeServerPro/~3/OaODNWsgonE/happy-holidays-exchange-server-pro-2011</link>
		<comments>http://exchangeserverpro.com/happy-holidays-exchange-server-pro-2011#comments</comments>
		<pubDate>Mon, 19 Dec 2011 10:34:29 +0000</pubDate>
		<dc:creator>Paul Cunningham</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Site News]]></category>

		<guid isPermaLink="false">http://exchangeserverpro.com/?p=4364</guid>
		<description><![CDATA[2011 is coming to an end, and Exchange Server Pro will be going quiet for a few weeks while I take a break to enjoy the holidays. ]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-2578" title="xmas" src="http://exchangeserverpro.com/wp-content/uploads/2010/12/xmas.jpg" alt="" width="600" height="200" /></p>
<p>2011 is coming to an end, and <a href="http://exchangeserverpro.com">Exchange Server Pro</a> will be going quiet for a few weeks while I take a break to enjoy the holidays. I will still be watching for questions in the comments or <a href="http://exchangeserverpro.com/forums">forums</a>, but won&#8217;t be posting new articles until January.</p>
<p>I hope you&#8217;ve gotten value from Exchange Server Pro this year, and I look forward to delivering even more useful content in 2012. Thank you to everyone who emailed, commented or tweeted your feedback to me throughout the year.</p>
<p>I also wish you all a safe and happy holiday.</p>
<p>See you next year!</p>
<h3  class="related_post_title">Related posts:</h3><ul class="related_post"><li><a href="http://exchangeserverpro.com/exchange-2010-boot-camp-update" title="Exchange 2010 Boot Camp Update">Exchange 2010 Boot Camp Update</a></li><li><a href="http://exchangeserverpro.com/register-interest-exchange-2010-boot-camp" title="Register Your Interest for the Exchange 2010 Boot Camp">Register Your Interest for the Exchange 2010 Boot Camp</a></li><li><a href="http://exchangeserverpro.com/webinar-invitation-upgrading-exchange-server-2010" title="Webinar Invitation: Upgrading to Exchange Server 2010">Webinar Invitation: Upgrading to Exchange Server 2010</a></li><li><a href="http://exchangeserverpro.com/happy-holidays-exchange-server-pro" title="Happy Holidays from Exchange Server Pro">Happy Holidays from Exchange Server Pro</a></li><li><a href="http://exchangeserverpro.com/whats-new-at-exchange-server-pro" title="What&#8217;s New at Exchange Server Pro">What&#8217;s New at Exchange Server Pro</a></li></ul><hr />
<p>This article <a href="http://exchangeserverpro.com/happy-holidays-exchange-server-pro-2011">Happy Holidays from Exchange Server Pro</a> is © 2011 ExchangeServerPro.com</p>
<p>Get more <a href="http://exchangeserverpro.com">Exchange Server tips</a> at <a href="http://exchangeserverpro.com">ExchangeServerPro.com</a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=OaODNWsgonE:VfcIO5Ws2Uw:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=OaODNWsgonE:VfcIO5Ws2Uw:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=OaODNWsgonE:VfcIO5Ws2Uw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=OaODNWsgonE:VfcIO5Ws2Uw:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=OaODNWsgonE:VfcIO5Ws2Uw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=OaODNWsgonE:VfcIO5Ws2Uw:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=OaODNWsgonE:VfcIO5Ws2Uw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=OaODNWsgonE:VfcIO5Ws2Uw:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=OaODNWsgonE:VfcIO5Ws2Uw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=OaODNWsgonE:VfcIO5Ws2Uw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=OaODNWsgonE:VfcIO5Ws2Uw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ExchangeServerPro/~4/OaODNWsgonE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://exchangeserverpro.com/happy-holidays-exchange-server-pro-2011/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://exchangeserverpro.com/happy-holidays-exchange-server-pro-2011</feedburner:origLink></item>
		<item>
		<title>Exchange 2010 FAQ: Are Wildcard SSL Certificates Supported?</title>
		<link>http://feedproxy.google.com/~r/ExchangeServerPro/~3/rGWNJ-p7gfg/exchange-2010-wildcard-ssl-certificates</link>
		<comments>http://exchangeserverpro.com/exchange-2010-wildcard-ssl-certificates#comments</comments>
		<pubDate>Mon, 19 Dec 2011 06:36:11 +0000</pubDate>
		<dc:creator>Paul Cunningham</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Certificates]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[SSL]]></category>
		<category><![CDATA[Wildcard]]></category>

		<guid isPermaLink="false">http://exchangeserverpro.com/?p=4360</guid>
		<description><![CDATA[Do wildcard SSL certificates cause any support or security issues with Exchange Server 2010?]]></description>
			<content:encoded><![CDATA[<p><em><strong>Question:</strong> can I use a wildcard SSL certificate on my Exchange 2010 server?</em></p>
<p><strong>Answer:</strong> Yes, you can.</p>
<p>Often people ask me whether wildcard <a href="http://exchangeserverpro.com/exchange-2010-ssl-certificates">SSL certificates</a> can be used with <a href="http://exchangeserverpro.com">Exchange Server 2010</a>, because they have heard that they are either unsupported, not secure, or just not recommended.</p>
<p>What is a wildcard SSL certificate? From <a href="http://technet.microsoft.com/en-us/library/dd351044.aspx">Microsoft TechNet</a>:</p>
<blockquote><p>A wildcard certificate is designed to support a domain and multiple subdomains. For example, configuring a wildcard certificate for *.contoso.com results in a certificate that will work for mail.contoso.com, web.contoso.com, and autodiscover.contoso.com.</p></blockquote>
<p>The attractiveness of wildcard SSL certificates is that they are usually cheaper than other types of certificates, and they make some Exchange Server configurations easier to manage.</p>
<h2>Support for Exchange 2010 and Wildcard SSL Certificates</h2>
<p>The support question is a relatively easy one to answer. Yes they are supported from a vendor perspective. One clue for this is that wildcard SSL certificates are an option in the Exchange 2010 new certificate wizard. Microsoft does not make a habit of including options in Exchange Server that will lead you down an unsupported path.</p>
<p><img class="aligncenter size-full wp-image-4361" title="wildcard-ssl-certificate-exchange-2010" src="http://exchangeserverpro.com/wp-content/uploads/2011/12/wildcard-ssl-certificate-exchange-2010.jpg" alt="" width="590" height="207" /></p>
<p>However they are not supported for all scenarios. For example:</p>
<ul>
<li>wildcard certificates can’t be used in conjunction with OCS 2007 (eg for secure communications for UM/OWA integration)</li>
<li>wildcard certificates are not supported for older mobile devices such as Windows Mobile 5.0</li>
</ul>
<h2>Security Implications for Exchange 2010 and Wildcard SSL Certificates</h2>
<p>The security question is also relatively easy to answer. The common assumption is that wildcard SSL certificates are less secure than other SSL certificates.</p>
<p>Microsoft’s own <a href="http://technet.microsoft.com/en-us/library/dd351044.aspx">documentation</a> even references “security implications”.</p>
<blockquote><p>…many customers are uncomfortable with the security implications of maintaining a certificate that can be used for any sub-domain. A more secure alternative is to list each of the required domains as SANs in the certificate. By default, this approach is used when certificate requests are generated by Exchange.</p></blockquote>
<p>Verisign/Symantec describes some of those implications <a href="http://www.verisign.com/ssl-certificates/wildcard-ssl-certificates/">here</a>:</p>
<blockquote>
<ul>
<li>Security: If one server or sub-domain is compromised, all sub-domains may be compromised.</li>
<li>Management: If the wildcard certificate needs to be revoked, all sub-domains will need a new certificate.</li>
</ul>
</blockquote>
<p>However, put those concerns in the context of your Exchange organization. If you’re using a wildcard SSL certificate to secure a single, internet-facing Client Access server then the above issues do not create much concern.</p>
<p>On the other hand if you’re deploying a large, global Exchange organization with multiple geographic entry points for various services, or those services spread over many services, then those issues are of greater concern.</p>
<h2>Summary</h2>
<p>So in conclusion, yes Exchange 2010 supports wildcard SSL certificates and no they are not necessarily less secure than other certificates.</p>
<p>However, do your due diligence and make sure that the specific support and security scenarios that do exist will not adversely impact your own Exchange 2010 deployment.</p>
<h3  class="related_post_title">Related posts:</h3><ul class="related_post"><li><a href="http://exchangeserverpro.com/exchange-ssl-certificate-management-survey" title="Exchange SSL Certificate Management Survey">Exchange SSL Certificate Management Survey</a></li><li><a href="http://exchangeserverpro.com/exchange-server-2010-pop3-configuring-securing-pop-client-access" title="Exchange Server 2010 POP3: Securing POP3 Client Remote Access">Exchange Server 2010 POP3: Securing POP3 Client Remote Access</a></li><li><a href="http://exchangeserverpro.com/autodiscover-ssl-warnings-exchange-2010-migration" title="Autodiscover and SSL Warnings during Exchange 2010 Migration">Autodiscover and SSL Warnings during Exchange 2010 Migration</a></li><li><a href="http://exchangeserverpro.com/exchange-2010-ssl-certificates" title="Exchange 2010 SSL Certificates">Exchange 2010 SSL Certificates</a></li><li><a href="http://exchangeserverpro.com/ssl-certificate-trust-errors-for-new-thawte-certificates" title="SSL Certificate Trust Errors for New Thawte Certificates">SSL Certificate Trust Errors for New Thawte Certificates</a></li></ul><hr />
<p>This article <a href="http://exchangeserverpro.com/exchange-2010-wildcard-ssl-certificates">Exchange 2010 FAQ: Are Wildcard SSL Certificates Supported?</a> is © 2011 ExchangeServerPro.com</p>
<p>Get more <a href="http://exchangeserverpro.com">Exchange Server tips</a> at <a href="http://exchangeserverpro.com">ExchangeServerPro.com</a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=rGWNJ-p7gfg:rTGlEs83-Nw:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=rGWNJ-p7gfg:rTGlEs83-Nw:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=rGWNJ-p7gfg:rTGlEs83-Nw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=rGWNJ-p7gfg:rTGlEs83-Nw:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=rGWNJ-p7gfg:rTGlEs83-Nw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=rGWNJ-p7gfg:rTGlEs83-Nw:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=rGWNJ-p7gfg:rTGlEs83-Nw:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=rGWNJ-p7gfg:rTGlEs83-Nw:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=rGWNJ-p7gfg:rTGlEs83-Nw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=rGWNJ-p7gfg:rTGlEs83-Nw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=rGWNJ-p7gfg:rTGlEs83-Nw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ExchangeServerPro/~4/rGWNJ-p7gfg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://exchangeserverpro.com/exchange-2010-wildcard-ssl-certificates/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://exchangeserverpro.com/exchange-2010-wildcard-ssl-certificates</feedburner:origLink></item>
		<item>
		<title>Error: Outlook Was Unable to Recover Some or All of the Items in this Folder</title>
		<link>http://feedproxy.google.com/~r/ExchangeServerPro/~3/I0ZWSGFvq0g/error-outlook-unable-recover-items-folder</link>
		<comments>http://exchangeserverpro.com/error-outlook-unable-recover-items-folder#comments</comments>
		<pubDate>Wed, 14 Dec 2011 10:13:26 +0000</pubDate>
		<dc:creator>Paul Cunningham</dc:creator>
				<category><![CDATA[Solutions]]></category>
		<category><![CDATA[Exchange 2003]]></category>
		<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Outlook]]></category>

		<guid isPermaLink="false">http://exchangeserverpro.com/?p=4355</guid>
		<description><![CDATA[While attempting to restore items from the Outlook recoverable deleted items you may encounter an error message.]]></description>
			<content:encoded><![CDATA[<p>While attempting to restore items from the Outlook recoverable deleted items you may encounter the following error message.</p>
<blockquote><p>Outlook was unable to recover some or all of the items in this folder. Make sure you have the required permissions to recover items in this folder, and try again. If the problem persists, contact your administrator.</p></blockquote>
<p><img class="aligncenter size-full wp-image-4356" title="outlook-unable-to-recover-all-of-the-items" src="http://exchangeserverpro.com/wp-content/uploads/2011/12/outlook-unable-to-recover-all-of-the-items.jpg" alt="" width="580" height="72" /></p>
<p>The error may occur when you attempt to recover a folder that contains a large number of sub-folders or mail items in it.</p>
<p>On the <a href="http://exchangeserverpro.com">Exchange Server</a> you may see a corresponding Application event log entry similar to this:</p>
<pre>Log Name:      Application
Source:        MSExchangeIS
Date:          11/14/2011 12:57:59 PM
Event ID:      9646
Task Category: General
Level:         Error
Keywords:      Classic
User:          N/A
Computer:      exchangeserver.domain.local
Description:
Mapi session "3bbea118-07e3-4746-b7bf-0e5b65e28314" exceeded the maximum of 500 objects of type "objtFolder".</pre>
<p>This can occur due to the default limits configured on the Exchange Server for the number of items that can be opened by a single MAPI session. In the example above the MAPI session was trying to open more than the default 500 allowed objects of type &#8220;objtFolder&#8221; (in other words, Folders).</p>
<p>The solution is provided by Microsoft in <a href="http://support.microsoft.com/kb/830829/en-us">this support article,</a> which refers to Exchange Server 2003 but applies to later versions as well.</p>
<ol>
<li>Open Regedit and navigate to <strong>\\HKEY_LOCAL_MACHINE \SYSTEM\CurrentControlSet\Services\MSExchangeIS\ParametersSystem</strong></li>
<li>If the key &#8220;MaxObjsPerMapiSession&#8221; does not already exist, right-click on ParametersSystem and create a new key of that name.</li>
<li>Create a new DWORD value with a name matching the object type in the event log error on your server (eg &#8220;objtFolder&#8221; in this example)</li>
<li>Set the DWORD value to a decimal value higher than the default. For the case above I first tried 1000, then 10000 when that did not work.</li>
<li>Wait 15-30 minutes for the registry change to take effect, then retry the Outlook operation.</li>
</ol>
<p>You may find that you need to try gradually increasing the value until you can successfully recover the items in Outlook. You may also find that after you&#8217;ve removed one limit that another object type&#8217;s limit may also suddenly come into play, so always check your event log for new errors identifying additional object types that you may need to add a registry value for.</p>
<p>After you&#8217;ve successfully recovered the Outlook items revert the registry keys to their default values (listed in the Microsoft support article above) to prevent issues with server resources in the future.</p>
<h3  class="related_post_title">Related posts:</h3><ul class="related_post"><li><a href="http://exchangeserverpro.com/test-mailflow-exchange-2003-servers" title="Using Test-Mailflow with Exchange 2003 Servers">Using Test-Mailflow with Exchange 2003 Servers</a></li><li><a href="http://exchangeserverpro.com/upgrading-exchange-servers" title="Why Haven&#8217;t You Upgraded Your Exchange Servers Yet?">Why Haven&#8217;t You Upgraded Your Exchange Servers Yet?</a></li><li><a href="http://exchangeserverpro.com/poll-version-exchange-server-running" title="Poll: Which Version of Exchange Server Are You Running?">Poll: Which Version of Exchange Server Are You Running?</a></li><li><a href="http://exchangeserverpro.com/update-rollup-3-exchange-2010-sp1-exchange-2007-sp3" title="Update Rollup 3 for Exchange 2010 SP1 and Exchange 2007 SP3">Update Rollup 3 for Exchange 2010 SP1 and Exchange 2007 SP3</a></li><li><a href="http://exchangeserverpro.com/exchange-2010-direct-migration-2003-2010-or-2007" title="Exchange 2010 FAQ: Is Direct Exchange Migration from 2003 to 2010 Possible Without Upgrading to 2007?">Exchange 2010 FAQ: Is Direct Exchange Migration from 2003 to 2010 Possible Without Upgrading to 2007?</a></li></ul><hr />
<p>This article <a href="http://exchangeserverpro.com/error-outlook-unable-recover-items-folder">Error: Outlook Was Unable to Recover Some or All of the Items in this Folder</a> is © 2011 ExchangeServerPro.com</p>
<p>Get more <a href="http://exchangeserverpro.com">Exchange Server tips</a> at <a href="http://exchangeserverpro.com">ExchangeServerPro.com</a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=I0ZWSGFvq0g:GfdEDpMANIM:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=I0ZWSGFvq0g:GfdEDpMANIM:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=I0ZWSGFvq0g:GfdEDpMANIM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=I0ZWSGFvq0g:GfdEDpMANIM:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?d=I9og5sOYxJI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=I0ZWSGFvq0g:GfdEDpMANIM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=I0ZWSGFvq0g:GfdEDpMANIM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=I0ZWSGFvq0g:GfdEDpMANIM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=I0ZWSGFvq0g:GfdEDpMANIM:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=I0ZWSGFvq0g:GfdEDpMANIM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?i=I0ZWSGFvq0g:GfdEDpMANIM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ExchangeServerPro?a=I0ZWSGFvq0g:GfdEDpMANIM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ExchangeServerPro?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ExchangeServerPro/~4/I0ZWSGFvq0g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://exchangeserverpro.com/error-outlook-unable-recover-items-folder/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://exchangeserverpro.com/error-outlook-unable-recover-items-folder</feedburner:origLink></item>
	</channel>
</rss>

