<?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>Email management, storage and security for business email admins &#187; Exchange server</title>
	<atom:link href="http://www.theemailadmin.com/category/exchange-server/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.theemailadmin.com</link>
	<description></description>
	<lastBuildDate>Fri, 10 Feb 2012 14:00:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Exchange Management Shell vs PowerShell</title>
		<link>http://www.theemailadmin.com/2012/02/exchange-management-shell-vs-powershell/</link>
		<comments>http://www.theemailadmin.com/2012/02/exchange-management-shell-vs-powershell/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 14:00:24 +0000</pubDate>
		<dc:creator>Casper Manes</dc:creator>
				<category><![CDATA[Exchange server]]></category>
		<category><![CDATA[Exchange 2010]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5385</guid>
		<description><![CDATA[One of the things that I get a lot of questions about when I start leading people down the CLI path is whether or not the Exchange Management Shell is just PowerShell with a fancier icon. We frequently open the EMS in order to perform certain managerial tasks in Exchange, and we hear more and [...]<p><a href="http://www.theemailadmin.com/2012/02/exchange-management-shell-vs-powershell/">Exchange Management Shell vs PowerShell</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F02%2Fexchange-management-shell-vs-powershell%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2012_2F02_2Fexchange-management-shell-vs-powershell_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F02%2Fexchange-management-shell-vs-powershell%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.theemailadmin.com/wp-content/uploads/2012/02/EMSvPS.jpg"><img class="alignright size-medium wp-image-5386" style="border-width: 0px; border-color: black; border-style: solid; margin: 10px;" src="http://www.theemailadmin.com/wp-content/uploads/2012/02/EMSvPS-300x124.jpg" alt="" width="300" height="124" /></a>One of the things that I get a lot of questions about when I start leading people down the CLI path is whether or not the Exchange Management Shell is just PowerShell with a fancier icon. We frequently open the EMS in order to perform certain managerial tasks in Exchange, and we hear more and more coming out of Redmond regarding PowerShell. So let’s discuss it.</p>
<p>As it turns out, the Exchange Management Shell <em>is</em> PowerShell (big surprise there) but it’s a more specialized environment than you get when simply running PowerShell.exe, with a lot of specific settings to make it talk to Exchange. In this post, we’ll go over the differences, and when you want to use one or the other.<span id="more-5385"></span></p>
<p>The Exchange Management Shell (EMS) uses PowerShell as its base, but it expands upon PowerShell in a number of ways. Many of these you could do yourself, either manually by entering specific commands, or by automating those tasks in your profile. When you launch the EMS, you connect to a remote session on an Exchange server using Windows Remote Management 2.0 (WinRM). Even if you are running the EMS on the only Exchange server in your environment, you connect to that WRM. The only exception to this is the Edge Transport server. Because it is a standalone role, when you launch the Exchange Management Shell, you connect to the local server only, much like you did in Exchange 2007.</p>
<p>When you connect, authentication checks create a session for you with access to the cmdlets and parameters you have permission to run based on your assigned management roles. The cmdlets are contained within three snap-ins:</p>
<ol>
<li>Microsoft.Exchange.Management.PowerShell.E2010</li>
<li>Microsoft.Exchange.Management.PowerShell.Setup</li>
<li>Microsoft.Exchange.Management.Powershell.Support</li>
</ol>
<p>You could load those into a PowerShell session using the <strong>Add-PsSnapin</strong> command but there are still differences between the two environments. Launching PowerShell and adding the snapins would give you access to the cmdlets, but first, you would still need to connect your session to the WinRM instance running on the Exchange server. You would also be running all of the available commands as cmdlets. When you launch the EMS, you run these as functions.</p>
<p>When it comes to writing scripts, the good news is that because EMS is built on top of PowerShell, there’s no real difference when it comes to scripting and using the EMS. Some of the system variables do not work fully in the EMS though, so if you are going to write a script that uses a system variable, you are better off adding the snap-ins to PowerShell.</p>
<p>While most Exchange admins tend to use the remote desktop client to connect to an Exchange Server, when they want to run EMS commands that is not necessary. If you are running a 64 bit desktop, you can install the Exchange Management Tools on your workstation from the Exchange installer. Users with the –RemotePowerShellEnabled attribute set to true, and assigned to at least one Exchange management role, will be able to run the EMS on their workstation and manage Exchange.</p>
<p>In future posts, we’ll start to dig deeper into the EMS and explore just how powerful and useful this administrative interface is.</p>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2012/02/exchange-management-shell-vs-powershell/">Exchange Management Shell vs PowerShell</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2012/02/exchange-management-shell-vs-powershell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Troubleshooting Exchange Networking: NICs (Part 4)</title>
		<link>http://www.theemailadmin.com/2012/02/troubleshooting-exchange-networking-nics-part-4/</link>
		<comments>http://www.theemailadmin.com/2012/02/troubleshooting-exchange-networking-nics-part-4/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 14:00:24 +0000</pubDate>
		<dc:creator>Casper Manes</dc:creator>
				<category><![CDATA[Exchange server]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5367</guid>
		<description><![CDATA[Often Exchange administrators will receive escalated help desk tickets from users complaining that Exchange is “slow” and demanding resolution. These sorts of tickets can be extremely challenging to work, since the subjective nature of slowness is often combined with an inability to replicate the problem, or the problem is intermittent. The Exchange admin can take [...]<p><a href="http://www.theemailadmin.com/2012/02/troubleshooting-exchange-networking-nics-part-4/">Troubleshooting Exchange Networking: NICs (Part 4)</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F02%2Ftroubleshooting-exchange-networking-nics-part-4%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2012_2F02_2Ftroubleshooting-exchange-networking-nics-part-4_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F02%2Ftroubleshooting-exchange-networking-nics-part-4%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.theemailadmin.com/wp-content/uploads/2012/02/NICs.jpg"><img class="alignright size-full wp-image-5368" style="border-width: 0px; border-color: black; border-style: solid; margin: 10px;" src="http://www.theemailadmin.com/wp-content/uploads/2012/02/NICs.jpg" alt="" width="225" height="225" /></a>Often Exchange administrators will receive escalated help desk tickets from users complaining that Exchange is “slow” and demanding resolution. These sorts of tickets can be extremely challenging to work, since the subjective nature of slowness is often combined with an inability to replicate the problem, or the problem is intermittent. The Exchange admin can take a look at the server(s) for high CPU utilization, low memory conditions, disk and network queue lengths exceeding the norm, and finding nothing, shrug it back off to the desktop support team as a client issue.</p>
<p>While it is often a client issue, there are several places between Outlook and a user’s mailbox that can cause intermittent slowness, and are fair to call networking bottlenecks. In a six part series of articles, we’ll look at how Exchange interacts on the network with various other services to help you identify network issues, and troubleshoot them when they occur.</p>
<p>In many cases, troubleshooting Exchange network bottlenecks will require a network trace, and may also require performance monitor counters. This series of articles will talk about both of those in general terms; how to use NetMon or Wireshark, and PerfMon are out of scope. In Part 4 of this series, we’re going to look at the humble physical layer (DoD, not OSI) and discuss troubleshooting NICs.<span id="more-5367"></span></p>
<h2>NICs</h2>
<p>We’re now down where the rubber meets the road, that is, where the packets meet the wire. Your Network Interface Cards can be the most important part of the entire network connectivity between client process and server process, and are also the most commonly overlooked aspect of the entire communications channel. I’ve seen many a case where Exchange network performance issues came down to problems with the NIC, but days had gone by troubleshooting the problem, or weeks just accepting the poor performance, before anyone thought to look at the NICs. <em>If the NICs aren’t happy, ain’t nobody happy</em> so let’s make sure those NICs smile.</p>
<p>The differences between the various physical connections are beyond the scope of this article, but the recommendations and troubleshooting suggestions in this article should apply equally to all types of NIC, whether copper or fibre based, and whether physical or virtual. Let’s start with some best practices for connecting up all your servers and clients:</p>
<h2>Use quality NICs</h2>
<p>There are times to save money, and there are times to spend the extra for the best, and as far as Exchange servers are concerned, you cannot go wrong spending a little extra on the higher quality NICs. Single port or multi-port, specific name brand not as important, but don’t buy the cheap one off NICs or limit yourself to what is built-in to your server.</p>
<h2>Use good cables</h2>
<p>I take pride in my ability to “roll my own” cables (Ethernet, not fibre-optic) and I also know that name-brand cables can cost a fortune, but here again is where you don’t want to take any chances. All of your drop cables should be commercially made, but at the same time, don’t assume that because they are, they are faultless. Make it a habit to test all cables early in the troubleshooting process if not at time of install.</p>
<h2>Use quality, managed switches</h2>
<p>Inexpensive unmanaged switches are good for home use, or to provide last minute patches in a meeting room without wireless, but have no place in a datacenter. Make sure all your servers directly connect to managed switches that can provide you details and statistics about the physical connection.</p>
<p>With that out of the way, now we’ll move on to some more best practices that should also be the second steps you take on the server when troubleshooting connectivity issues, right after reseating all the cables.</p>
<h2>Hardware Drivers</h2>
<p>Make absolutely certain you are running the latest hardware drivers. Check the vendor site, and read the documentation for any known issues that might correlate to your problem, but unless there is something contraindicated in that documentation, make sure you have the latest supported drivers. If you do though, consider downgrading one rev just in case you have encountered a new bug.</p>
<h2>Firmware</h2>
<p>Don’t just stop at the software drivers for your NICs, make sure you have the latest firmware installed as well.</p>
<h2>TCPIP.SYS</h2>
<p>Check the Microsoft operating system drivers for your specific platform, and if you are not running the latest TCPIP driver, upgrade immediately. I have personally seen dozens of problems magically disappear just by catching up on patches. Of course, I do recommend staying current on all patches, but this is one that should have no exceptions.</p>
<h2>Teaming</h2>
<p>More connectivity problems have been “solved” by “breaking the team” than any other single fix in history. If you have having network connectivity problems and are using network teaming, break the team and see if the problem goes away. Do this early on, as it is a quick thing to check, and to put back if that is not the problem. Odds are that it is, and in that case, you need to troubleshoot network teaming, not Exchange networking. The solution will usually be with updating drivers, fixing a problem with your configuration, or something on the switch.</p>
<h2>Receive Side Scaling and ToE</h2>
<p>If your multi-processor Exchange server is slamming one CPU(or core) and the rest are sitting idle, it’s a good bet you don’t have RSS enabled. RSS lets your server balance NIC interrupts across all the CPUs, which leads to better overall performance. It’s on by default in 2008 and 2008R2, but might have been turned off by another admin. If you see high CPU on only one processor, check with this command.</p>
<p><strong>netsh interface tcp show global</strong></p>
<p>If Receive-side Scalaing state shows as disabled, you’ve found the culprit.</p>
<p>That same command will also show you the status of TCP Chimney Offload, or ToE. With compatible NICs, ToE can provide much better throughput on large file transfers (like database replication for DAGs, mailbox moves, etc.) and reduced CPU utilization. With it off, those operations will take much longer, have lower throughput, and cause higher CPU utilization. 2008 disables ToE by default, while 2008 R2 uses an automatic setting. If your NICs support ToE, make sure you are using it by enabling it (if necessary) in the O/S, and then setting the advanced properties of the NIC to use it.</p>
<h2>Using Hardware Load Balancers</h2>
<p>The biggest challenge to troubleshooting load balanced servers is that the problem usually will manifest itself as intermittent, or isolated to a single client or subnet. If load balancers are in the mix, test from your machine, but test against the VIP and against each physical server one by one. If you cannot reproduce the problem, try the same process from the client. This may be one time where you have to use a HOSTS file to trick the client into connecting to each server one by one. If you don’t have admin access to the hardware load balancer, get on with that admin to do your tests so they can view realtime logs to see if anything stands out.</p>
<h2>The Microsoft Network Load Balancing Service</h2>
<p>If you are trying to load balance Exchange servers and are running into problems using software load balancing, my money is on the problem being in your switch configuration, and not with the MS NLB service. The easy test is to move the VIP to one of the servers, validate that everything works, and then move the VIP to the other and validate again. If it works without NLB in the mix, then it is not Exchange you should be looking at. MS NLB works great, though it is limited to IP based affinity and not port based, but there are so many ways the switch and/or router that your server connects to can screw up NLB, I’ll frequently recommend against using it unless I can directly manage the switches myself, or I know the person who does and that he or she understands their side of making NLB work.</p>
<p>See  <a target="_blank" href="http://technet.microsoft.com/en-us/library/ff625247.aspx" onclick="pageTracker._trackPageview('/outgoing/technet.microsoft.com/en-us/library/ff625247.aspx?referer=');">http://technet.microsoft.com/en-us/library/ff625247.aspx</a> for some more tips on MS NBL, and if you are using VMware to virtualize your servers, see this article for specific settings in VMware. <a target="_blank" href="http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&amp;cmd=displayKC&amp;externalId=1007371" onclick="pageTracker._trackPageview('/outgoing/kb.vmware.com/selfservice/microsites/search.do?language=en_US_amp_cmd=displayKC_amp_externalId=1007371&amp;referer=');">http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&amp;cmd=displayKC&amp;externalId=1007371</a></p>
<h2>Coming up next</h2>
<p>In Part 5, we will look at the issues that can cause Exchange problems when making RPC calls, and how to troubleshoot those problems. Here’s a rundown of the six parts in this series. We’ll update with live links as each part is published over the next several weeks.</p>
<ol>
<li><a href="http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-dns-part-1/">Introduction and DNS</a></li>
<li><a href="http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-active-directory-part-2/">Active Directory</a></li>
<li><a href="http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-firewalls-part-3/" target="_blank">Firewalls</a></li>
<li>NICs (this post)</li>
<li>RPCs</li>
<li>Client side issues</li>
</ol>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2012/02/troubleshooting-exchange-networking-nics-part-4/">Troubleshooting Exchange Networking: NICs (Part 4)</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2012/02/troubleshooting-exchange-networking-nics-part-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rejoice, for the PST Capture Tool Has Been Launched!</title>
		<link>http://www.theemailadmin.com/2012/02/rejoice-for-the-pst-capture-tool-has-been-published/</link>
		<comments>http://www.theemailadmin.com/2012/02/rejoice-for-the-pst-capture-tool-has-been-published/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 14:00:37 +0000</pubDate>
		<dc:creator>Casper Manes</dc:creator>
				<category><![CDATA[Exchange server]]></category>
		<category><![CDATA[PST files]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5341</guid>
		<description><![CDATA[&#160; The Exchange Team first indicated it was coming back in July 2011. We’ve been anxiously awaiting it ever since, and it has finally arrived. Microsoft’s free PST Capture Tool is available for download now. This tool is designed to hunt down PSTs on your network and provide administrators with a management console which will [...]<p><a href="http://www.theemailadmin.com/2012/02/rejoice-for-the-pst-capture-tool-has-been-published/">Rejoice, for the PST Capture Tool Has Been Launched!</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F02%2Frejoice-for-the-pst-capture-tool-has-been-published%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2012_2F02_2Frejoice-for-the-pst-capture-tool-has-been-published_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F02%2Frejoice-for-the-pst-capture-tool-has-been-published%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>&nbsp;</p>
<p><a target="_blank" href="http://www.theemailadmin.com/wp-content/uploads/2012/01/party1.jpg"><img class="alignright size-full wp-image-5346" style="border-image: initial; border-width: 0px; border-color: black; border-style: solid; margin: 10px;" src="http://www.theemailadmin.com/wp-content/uploads/2012/01/party1.jpg" alt="" width="204" height="204" /></a>The Exchange Team first indicated it was coming back in July 2011. We’ve been anxiously awaiting it ever since, and it has finally arrived. Microsoft’s free PST Capture Tool is available for <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=f6006c4b-a6a9-4e83-81b3-e770d37f63ff" onclick="pageTracker._trackPageview('/outgoing/www.microsoft.com/downloads/details.aspx?FamilyID=f6006c4b-a6a9-4e83-81b3-e770d37f63ff&amp;referer=');">download now</a>.</p>
<p>This tool is designed to hunt down PSTs on your network and provide administrators with a management console which will enable them to either migrate the content to Exchange 2010 on premise, or to Office 365. It uses a client-server approach, requiring a management console to be installed on a server, and agents to be deployed to all systems which you want to scan for PSTs.<span id="more-5341"></span></p>
<p>To use the tool you must first install the PST Capture Console onto a workstation or server with Outlook 2010 (64 bit) installed. During the install you specify the service account to use, and the port the service will bind to if you don’t want to use the default 6674. Then you install the PST Capture Agent on each computer that you want to search for PSTs. During the install of the agent you specify the FQDN of the Capture Console, and the port if you changed it from the default.</p>
<p>You’ll also need a service account that has been assigned  permissions based on the import scenario you want to implement.</p>
<table width="486" border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="bottom" width="130"><strong>Scenario</strong></td>
<td valign="bottom" width="356"><strong>Permissions required</strong></td>
</tr>
<tr>
<td valign="top" width="130">Installing PST Capture</td>
<td valign="top" width="356">
<ul>
<li>Local administrator privileges on the computer where you want to install the PST Capture Console or PST Capture agent.</li>
</ul>
</td>
</tr>
<tr>
<td valign="top" width="130">Searching for PSTs</td>
<td valign="top" width="356">
<ul>
<li>You must be logged on with local administrator privileges on the computer where you run the PST Capture Console.</li>
</ul>
</td>
</tr>
<tr>
<td valign="top" width="130">Importing PSTs to mailboxes in your Exchange Online (Office 365) organization</td>
<td valign="top" width="356">
<ul>
<li>You must be logged on with local administrator privileges on the computer where you run the PST Capture Console.</li>
<li>The user account you specify on the <strong>Online Connection Settings</strong> tab of the PST Capture settings must be assigned the Organization Management role.</li>
</ul>
</td>
</tr>
<tr>
<td valign="top" width="130">Importing PSTs to mailboxes in your Exchange Online (BPOS) organization</td>
<td valign="top" width="356">
<ul>
<li>You must be logged on with local administrator privileges on the computer where you run the PST Capture Console.</li>
<li>The user account you specify on the <strong>Online Connection Settings</strong> tab of the PST Capture settings must be an Exchange Online administrator account.</li>
</ul>
</td>
</tr>
<tr>
<td valign="top" width="130">Importing PSTs to mailboxes in your on-premises organization</td>
<td valign="top" width="356">
<ul>
<li>You must be logged on with local administrator privileges on the computer where you run the PST Capture Console.</li>
<li>The user account that the PST Capture Central Service uses must be mailbox-enabled.</li>
<li>The user account that the PST Capture Central Service uses must be assigned the Public Folder Management role in your Exchange organization.</li>
</ul>
</td>
</tr>
<tr>
<td valign="top" width="130">Importing PSTs to archive mailboxes in your on-premises organization</td>
<td valign="top" width="356">
<ul>
<li>You must be logged on with local administrator privileges on the computer where you run the PST Capture Console.</li>
<li>The user account that the PST Capture Central Service uses must be mailbox-enabled.</li>
<li>The user account that the PST Capture Central Service uses must be assigned the Organization Management role in your Exchange organization.</li>
</ul>
</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p>Running import operations can be bandwidth intensive. The agent will copy the PST files to the server running the management console. Then the management console server will either copy the data to a CAS server which will then copy it to a mailbox server, or if the destination is in Office 365, the management console will copy the data directly to Office 365. If you were keeping count, that means a PST might transit the network anywhere from two to four times, depending upon the source of the PST (local hard drive or network share) and the destination. It’s recommended that the management console server be local to the CAS server as well, and in the case of Office 365 customers, close to the Internet egress point.</p>
<p>With the release of the PST Capture Tool, admins now have a free tool to help finally eradicate PST files. Good hunting!</p>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2012/02/rejoice-for-the-pst-capture-tool-has-been-published/">Rejoice, for the PST Capture Tool Has Been Launched!</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2012/02/rejoice-for-the-pst-capture-tool-has-been-published/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>30 New Custom Attributes? Not So Fast</title>
		<link>http://www.theemailadmin.com/2012/01/30-new-custom-attributes-not-so-fast/</link>
		<comments>http://www.theemailadmin.com/2012/01/30-new-custom-attributes-not-so-fast/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 14:00:39 +0000</pubDate>
		<dc:creator>Casper Manes</dc:creator>
				<category><![CDATA[Exchange server]]></category>
		<category><![CDATA[Exchange 2010]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5329</guid>
		<description><![CDATA[Back in early December, I wrote an article called A Deeper Look into Exchange 2010 SP2 where I discussed some of the new changes being added to Exchange and to the Active Directory schema. If you didn’t read that article, click the link above, and then come back here. It’s okay, I’ll wait. Back and [...]<p><a href="http://www.theemailadmin.com/2012/01/30-new-custom-attributes-not-so-fast/">30 New Custom Attributes? Not So Fast</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2F30-new-custom-attributes-not-so-fast%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2012_2F01_2F30-new-custom-attributes-not-so-fast_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2F30-new-custom-attributes-not-so-fast%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.theemailadmin.com/wp-content/uploads/2012/01/caution.jpg"><img class="alignright size-full wp-image-5330" style="border-width: 0px; border-color: black; border-style: solid; margin: 10px;" src="http://www.theemailadmin.com/wp-content/uploads/2012/01/caution.jpg" alt="" width="300" height="168" /></a>Back in early December, I wrote an article called <strong><a title="Permanent Link to A Deeper Look into Exchange 2010 SP2" href="http://www.theemailadmin.com/2011/12/a-deeper-look-into-exchange-2010-sp2/">A Deeper Look into Exchange 2010 SP2</a></strong> where I discussed some of the new changes being added to Exchange and to the Active Directory schema. If you didn’t read that article, click the link above, and then come back here. It’s okay, I’ll wait. Back and ready to go? Good. In that article I indicated that the new extension attributes could be available for customers who want to store additional information in Active Directory but don’t have suitable attributes already in place, and don’t want to roll their own schema extensions.</p>
<p>In a new post over at the Exchange Team Blog, <a target="_blank" href="http://blogs.technet.com/b/exchange/" onclick="pageTracker._trackPageview('/outgoing/blogs.technet.com/b/exchange/?referer=');">You Had Me at EHLO</a>, Nino Bilic wrote an article a couple of weeks ago that has prompted me to update you about this, and to revise what I said, in his post on <a target="_blank" href="http://blogs.technet.com/b/exchange/archive/2012/01/17/custom-aka-extension-attributes-in-exchange-2010-sp2-and-their-use.aspx" onclick="pageTracker._trackPageview('/outgoing/blogs.technet.com/b/exchange/archive/2012/01/17/custom-aka-extension-attributes-in-exchange-2010-sp2-and-their-use.aspx?referer=');">Custom (aka. Extension) attributes in Exchange 2010 SP2 and their use</a>, Bilic talks in detail on the two additions to the object class ms-Exch-Custom-Attributes.<span id="more-5329"></span></p>
<p>Here’s where clarifications are necessary, and where I had the wrong idea about all those new extension attributes. Microsoft considers ms-Exch-Extension-Attribute1 through 15 to be “all yours”. As Bilic stated it, “you are free to use them as you used them before”. If you ever read the TechNet article <a target="_blank" href="http://technet.microsoft.com/en-us/library/ee423541.aspx" onclick="pageTracker._trackPageview('/outgoing/technet.microsoft.com/en-us/library/ee423541.aspx?referer=');">Understanding Custom Attributes</a>, then you probably are already using those first 15 attributes for anything and everything you might want to store in Active Directory. The Exchange Management Shell even makes it trivially easy to set/edit/remove values from those attributes, shorthanding them to “CustomAttribute#” and allowing you to write to them using the <strong>Set-Mailbox</strong> command. Logic suggests that by creating CustomAttribute16 through 45, Microsoft was just being generous and giving you more fields to play with. Not so much.</p>
<p>According to Bilic, CustomAttribute16 through 45 are for “future use” and should be considered reserved. What they are being used for remains to be seen, and there are no hints in the article or elsewhere, but CustomAttribute16 through 45 cannot be modified using the <strong>Set-Mailbox –CustomAttributeX</strong> command the way 1 through 15 can be, nor are they exposed in the UI, and Bilic went on to say “we cannot recommend that you use non-Exchange tools to edit their values because we might use those attributes in the future for various Exchange features.” Can you update those values with ADSI Edit or some third party tool? Probably. Should you? Not a chance.</p>
<p>The bottom line is to keep your hands off of CustomAttributes 15 through 45, but to also keep your fingers crossed that some new functionality will be forthcoming. If the 15 attributes we’ve had all this time are not enough, keep in mind that SP2 did add ms-exch-extension-custom-attribute1 to 5, which are multi-value attributes that can store tons more information about an object. They have been shorthanded to ExtensionCustomAttribute1 to 5, and can be accessed using the <strong>Set-Mailbox</strong> command. Hopefully that will be enough to fit any needs you have in the foreseeable future.</p>
<p>&nbsp;</p>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2012/01/30-new-custom-attributes-not-so-fast/">30 New Custom Attributes? Not So Fast</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2012/01/30-new-custom-attributes-not-so-fast/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>5 Common Outlook Errors and How to Fix Them</title>
		<link>http://www.theemailadmin.com/2012/01/5-common-outlook-errors-and-how-to-fix-them/</link>
		<comments>http://www.theemailadmin.com/2012/01/5-common-outlook-errors-and-how-to-fix-them/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 14:00:35 +0000</pubDate>
		<dc:creator>Jeff Orloff</dc:creator>
				<category><![CDATA[email management]]></category>
		<category><![CDATA[Exchange server]]></category>
		<category><![CDATA[AppData]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[email archiving]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Microsoft Exchange Server]]></category>
		<category><![CDATA[Microsoft Outlook]]></category>
		<category><![CDATA[Microsoft TechNet]]></category>
		<category><![CDATA[outlook]]></category>
		<category><![CDATA[Program Files]]></category>
		<category><![CDATA[Simple Mail Transfer Protocol]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5294</guid>
		<description><![CDATA[Email is one of the most important communications tools for businesses. When it stops working, people start to get nervous. While there are many things that a user can do to mess up their email, many of these problems can be resolved with a restart of the software or the computer. However when the old [...]<p><a href="http://www.theemailadmin.com/2012/01/5-common-outlook-errors-and-how-to-fix-them/">5 Common Outlook Errors and How to Fix Them</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2F5-common-outlook-errors-and-how-to-fix-them%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2012_2F01_2F5-common-outlook-errors-and-how-to-fix-them_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2F5-common-outlook-errors-and-how-to-fix-them%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.theemailadmin.com/wp-content/uploads/2012/01/error_button.png"><img class="alignright size-full wp-image-5295" style="border-width: 0px; border-color: black; border-style: solid; margin: 10px;" src="http://www.theemailadmin.com/wp-content/uploads/2012/01/error_button.png" alt="" width="209" height="209" /></a>Email is one of the most important communications tools for businesses. When it stops working, people start to get nervous.</p>
<p>While there are many things that a user can do to mess up their email, many of these problems can be resolved with a restart of the software or the computer.</p>
<p>However when the old standby of restarting doesn’t work, it is time for the email administrator to start looking into the issue a bit more deeply.</p>
<p>Here are some of the more common errors found in Outlook 2007 along with some of the ways you can make things right again:<span id="more-5294"></span></p>
<h2>1. Error message that reads: “Cannot open your default e-mail folders. The information store could not be opened.”</h2>
<p>This issue can be fixed by first locating Outlook.exe that can be found here: C:\Program Files\Microsoft Office\Office12.</p>
<p>Next, right click Outlook.exe and then click on Properties.</p>
<p>On the Compatibility tab, clear the check box that reads &#8216;Run this program in compatibility mode&#8217;. Then click Ok and restart Outlook.</p>
<h2>2. Error message that reads: “Your Microsoft Exchange Server is unavailable.”</h2>
<p>This error is a bit trickier to resolve only because there can be many different causes.</p>
<p><em>No data connection</em> – test your SMTP connection using telnet. If you are unsure how to do this, Microsoft has provided a guide on their TechNet site that walks you through this process: <a target="_blank" href="http://technet.microsoft.com/en-us/library/bb123686.aspx" onclick="pageTracker._trackPageview('/outgoing/technet.microsoft.com/en-us/library/bb123686.aspx?referer=');">http://technet.microsoft.com/en-us/library/bb123686.aspx</a>.</p>
<p><em>Office Outlook files are locked</em> – there are times when .ost and .pst files are accidentally, or purposefully, set to read only. Check the permissions of these two files by navigating to:</p>
<p>C:\Users\&lt;username&gt;\AppData\Local\Microsoft\Outlook\ for .pst files and C:\Program Files\Microsoft Office\Office12\ for .ost files. Make sure that neither is set to read only.</p>
<p><em>Third party applications are interfering with Outlook</em> – many programs, including anti-malware solutions, can interfere with Outlook connecting to the Exchange Server. To check to see if this is the cause, start Outlook in safe mode.</p>
<p>Outlook files are corrupted – this can happen after an upgrade is applied to Outlook. If any of the .dat files listed below are present they should be deleted or renamed.</p>
<ul>
<li>Extend.dat – Located in C:\Documents and Settings\<em>&lt;username&gt;</em>\Local Settings\Application Data\Microsoft\Outlook\</li>
<li>Frmcache.dat – Located in C:\Documents and Settings\<em>&lt;username&gt;</em>\Application Data\Microsoft\Forms\</li>
<li>Views.dat – Located in C:\Documents and Settings\<em>&lt;username&gt;</em>\Application Data\Microsoft\Outlook\</li>
<li>Outcmd.dat – Located in C:\Documents and Settings\<em>&lt;username&gt;</em>\Application Data\Microsoft\Outlook\</li>
</ul>
<p>All the files, with the exception of Outcmd.dat will be re-created. The Outcmd.dat file saves customized toolbar settings so if it is removed these settings will have to be re-applied.</p>
<h2>3. Office Outlook will not open personal folders or personal folders do not show up in Outlook.</h2>
<p>Personal folders are often the root of many problems related to Outlook. Microsoft has published the Inbox Repair tool, Scanpst.exe, that can be used to scan .pst and .ost files for errors in the file structure. If this is not intact, it will reset the file structure and rebuild the headers.</p>
<p>This tool will only work on the files that reside on your computer’s hard drive, not the files on the Microsoft Exchange Server.</p>
<p>This will also help to resolve the error message: &#8220;Cannot open your default e-mail folder. The file c:\users\owner\documents\software info\outlook.pst is not a personal folders file&#8221;.</p>
<h2>4. Error messages that read either: “The action cannot be completed. The connection to the Microsoft Exchange Server is unavailable. Your network adapter does not have a default gateway” or “Your Microsoft Exchange Server is unavailable”.</h2>
<p>This error occurs when Outlook is unsure of the default gateway address. The former is the error message that shows when the Outlook profile is configured automatically and the latter appears when the profile is manually configured. Both have the same fix.</p>
<p>To repair this you will need to edit the registry so clicking on Start and then Run is necessary. Then, enter regedit in the Open box and click OK.</p>
<p>Next, navigate to the registry key: HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Outlook\RPC. On the Edit menu, point to New, and then click DWORD Value.  Type DefConnectOpts, and then press ENTER. Now, right-click DefConnectOpts, and then click Modify. In the Value data box, type 0, and then click OK.</p>
<h2>5. None of the authentication methods supported by this client are supported by your server.</h2>
<p>This happens to people when they use their computer in multiple locations. For example, a laptop is taken home and connected to the home network or perhaps a computer is taken on the road. Basically, it comes from authentication rules for the SMTP server.</p>
<p>When this error occurs go to the Account Settings tab and click on Change then More Settings. Now select the Outgoing Server tab.</p>
<p>The option that reads: “My outgoing server requires authentication” and the one that reads: “Log on to incoming mail server before sending mail” should both be looked at. If there is a check in the option box remove it.</p>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2012/01/5-common-outlook-errors-and-how-to-fix-them/">5 Common Outlook Errors and How to Fix Them</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2012/01/5-common-outlook-errors-and-how-to-fix-them/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Troubleshooting Exchange Networking: Firewalls (Part 3)</title>
		<link>http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-firewalls-part-3/</link>
		<comments>http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-firewalls-part-3/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 15:19:31 +0000</pubDate>
		<dc:creator>Casper Manes</dc:creator>
				<category><![CDATA[Exchange server]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5297</guid>
		<description><![CDATA[Often, Exchange administrators will receive escalated help desk tickets from users complaining that Exchange is “slow” and demanding resolution. These sorts of tickets (slow being at best a relative term and never specific enough about what precisely is considered to be slow) can be extremely challenging to work, since the subjective nature of slowness is [...]<p><a href="http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-firewalls-part-3/">Troubleshooting Exchange Networking: Firewalls (Part 3)</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2Ftroubleshooting-exchange-networking-firewalls-part-3%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2012_2F01_2Ftroubleshooting-exchange-networking-firewalls-part-3_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2Ftroubleshooting-exchange-networking-firewalls-part-3%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.theemailadmin.com/wp-content/uploads/2012/01/firewall.jpg"><img class="alignright size-medium wp-image-5298" style="margin: 10px; border: 0px solid black;" src="http://www.theemailadmin.com/wp-content/uploads/2012/01/firewall-300x167.jpg" alt="" width="300" height="167" /></a>Often, Exchange administrators will receive escalated help desk tickets from users complaining that Exchange is “slow” and demanding resolution. These sorts of tickets (slow being at best a relative term and never specific enough about what precisely is considered to be slow) can be extremely challenging to work, since the subjective nature of slowness is often combined with an inability to replicate the problem, or the problem is intermittent. The Exchange admin can take a look at the server(s) for high CPU utilization, low memory conditions, disk and network queue lengths exceeding the norm, and finding nothing, shrug it back off to the desktop support team as a client issue. While it is often a client issue, there are several places between Outlook and a user’s mailbox that can cause intermittent slowness, and are fair to call networking bottlenecks. In a six part series of articles, we’ll look at how Exchange interacts on the network with various other services to help you identify network issues, and troubleshoot them when they occur.</p>
<p>In many cases, troubleshooting Exchange network bottlenecks will require a network trace, and may also require performance monitor counters. This series of articles will talk about both of those in general terms; how to use NetMon or Wireshark, and PerfMon are out of scope. In Part 3 of this series, we’re going to discuss the connectivity you need to permit through firewalls for Exchange to function properly on the network.<span id="more-5297"></span></p>
<h2>Firewalls</h2>
<p>There are at least three places where a firewall can cause problems for Exchange. The most common is at your Internet border, when you are trying to support a protocol and the firewall is not permitting the necessary traffic. The second is between your DMZ and the internal network, which can cause issues for both Edge Transport servers and Client Access Servers, depending upon whether you pass traffic into them directly (which is not recommended) or you publish the CAS services using TMG or some other reverse web proxy. The third, which is both the least common and the most problematic, is when there are firewalls between different internal Exchange servers, or between Exchange servers and Active Directory.</p>
<p>Clients on the Internet must connect to the CAS servers for the various protocols they will use. Other Internet mail servers must connect to the Edge Transport server to exchange SMTP messages, and all Exchange server roles except the Edge Transport Server must query AD directly for configuration information, and to perform LDAP lookups for servers in different sites. They will also need to communicate with Active Directory to authenticate users. Edge Transport servers have to communicate with Hub Transport servers both to update their configuration, and to pass SMTP traffic in to the internal network. Any time a firewall is between two Exchange servers, or between an internal Exchange server and either Active Directory or any other part of the Exchange environment, you must ensure that all required traffic is permitted to pass through the firewall. Firewalls frequently translate IP addresses, called NAT. NAT is okay for some protocols; for others not so much. Windows 2008 and 2008 R2 servers will source all ephemeral connections from ports between 49152 and 65535. If you have any Exchange servers running 2003 or 2003 R2, you will need to expand that range to 1025-65535. The same can be said for clients. Windows Vista and 7 will source their connections from ports between 49152 and 65535. XP clients will source from 1025 to 65535.</p>
<p>Let’s look at each of the roles to see more about the required connectivity.</p>
<h2>Edge Transport Server Role</h2>
<p>Of course, your firewall needs to permit inbound TCP 25 from the Internet (ip any) to enable other Internet mail servers to send it email, and source ports can be anything from 1025 on up. You should also permit TCP port 587, which is commonly used by clients sending TCP over TLS connections. Older firewalls sometimes attempt to perform a rudimentary form of Intrusion Protection (fixup, inspect, etc.) which can often cause more problems than it solves, so consider carefully whether to enable that or not.</p>
<p>The Edge Transport server doesn&#8217;t access Active Directory directly, it stores it configuration in an instance of Active Directory Lightweight Directory Services. It uses an Edge Subscription to subscribe to a Hub Transport server in an Active Directory site, which will use the Microsoft Exchange EdgeSync service to synchronize Active Directory data to AD LDS. The Edge Transport server must be able to communicate to each and every Hub Transport server within the site it is subscribed to over TCP port 50636. That’s every Hub Transport server in the site, not just one or two, and it will source its queries from an ephemeral port between 49152 and 65535. If you add a Hub Transport server to the site, you must update your firewall rules to include the new server and update your Edge subscription.</p>
<p>&nbsp;</p>
<p>You can use NAT for both Internet traffic in to the Edge Transport server, and from the Edge Transport server into the Hub Transport servers in the subscribed site.</p>
<h2>Hub Transport Server Role</h2>
<p>The Hub Transport server must contact Active Directory to perform message categorization, necessary for recipient lookup and routing resolution. This will include the location of the recipient&#8217;s mailbox and any restrictions or permissions that may apply. It will also use LDAP queries to expand the membership of distribution lists to determine membership of a dynamic distribution list.</p>
<p>&nbsp;</p>
<p>It’s best if there is no firewall between a Hub Transport server and the Domain Controllers in the same site, but if you must place a firewall between them, ensure that the Exchange server can reach all Domain Controllers in the site over all the following ports and protocols.Collapse this tableExpand this table</p>
<table border="0" cellspacing="1" cellpadding="0">
<tbody>
<tr>
<td valign="top"><strong>Application protocol</strong></td>
<td valign="top"><strong>Protocol</strong></td>
<td valign="top"><strong>Ports</strong></td>
</tr>
<tr>
<td valign="top">Global Catalog Server</td>
<td valign="top">TCP</td>
<td valign="top">3269</td>
</tr>
<tr>
<td valign="top">Global Catalog Server</td>
<td valign="top">TCP</td>
<td valign="top">3268</td>
</tr>
<tr>
<td valign="top">LDAP Server</td>
<td valign="top">TCP</td>
<td valign="top">389</td>
</tr>
<tr>
<td valign="top">LDAP Server</td>
<td valign="top">UDP</td>
<td valign="top">389</td>
</tr>
<tr>
<td valign="top">LDAP SSL</td>
<td valign="top">TCP</td>
<td valign="top">636</td>
</tr>
<tr>
<td valign="top">LDAP SSL</td>
<td valign="top">UDP</td>
<td valign="top">636</td>
</tr>
<tr>
<td valign="top">RPC</td>
<td valign="top">TCP</td>
<td valign="top">135</td>
</tr>
<tr>
<td valign="top">RPC randomly allocated high TCP ports</td>
<td valign="top">TCP</td>
<td valign="top">49152 &#8211; 65535</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Collapse this tableExpand this table</p>
<table border="0" cellspacing="1" cellpadding="0">
<tbody>
<tr>
<td valign="top"><strong>Application protocol</strong></td>
<td valign="top"><strong>Protocol</strong></td>
<td valign="top"><strong>Ports</strong></td>
</tr>
<tr>
<td valign="top">DCOM¹</td>
<td valign="top">TCP + UDP</td>
<td valign="top"><em>random port number between 49152 &#8211; 65535</em></td>
</tr>
<tr>
<td valign="top">ICMP (ping)</td>
<td valign="top">ICMP</td>
<td></td>
</tr>
<tr>
<td valign="top">LDAP</td>
<td valign="top">TCP</td>
<td valign="top">389</td>
</tr>
<tr>
<td valign="top">SMB</td>
<td valign="top">TCP</td>
<td valign="top">445</td>
</tr>
<tr>
<td valign="top">RPC</td>
<td valign="top">TCP</td>
<td valign="top">135, <em>random port number between 49152 &#8211; 65535</em><strong></strong></td>
</tr>
<tr>
<td valign="top">SMTP</td>
<td valign="top">TCP</td>
<td valign="top">25</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>NAT is no good here; it can break RPC DCOM traffic which is used for some Active Directory functions.</p>
<h2>Client Access Server Role</h2>
<p>The Client Access server role services clients connecting from the Internet who want to use Outlook Web App, POP3, IMAP4, or ActiveSync. When a connection is received, the Client Access server authenticates the user against AD and then queries to determine the appropriate mailbox server. If the user&#8217;s mailbox is in the same site, the user is connected directly to their mailbox. If in a different site, the connection is redirected to a Client Access server in the remote site.</p>
<p>If you are going to provide client connections directly to the CAS server, you must permit the following for the relevant client protocols.Collapse this tableExpand this table</p>
<table border="0" cellspacing="1" cellpadding="0">
<tbody>
<tr>
<td valign="top"><strong>Application protocol</strong></td>
<td valign="top"><strong>Protocol</strong></td>
<td valign="top"><strong>Ports</strong></td>
</tr>
<tr>
<td valign="top">IMAP</td>
<td valign="top">TCP</td>
<td valign="top">143</td>
</tr>
<tr>
<td valign="top">IMAP over SSL</td>
<td valign="top">TCP</td>
<td valign="top">993</td>
</tr>
<tr>
<td valign="top">POP3</td>
<td valign="top">TCP</td>
<td valign="top">110</td>
</tr>
<tr>
<td valign="top">POP3 over SSL</td>
<td valign="top">TCP</td>
<td valign="top">995</td>
</tr>
<tr>
<td valign="top">Randomly allocated high TCP ports</td>
<td valign="top">TCP</td>
<td valign="top"><em>random port number between 49152 &#8211; 65535</em></td>
</tr>
<tr>
<td valign="top">RPC</td>
<td valign="top">TCP</td>
<td valign="top">135</td>
</tr>
<tr>
<td valign="top">RPC over HTTPS</td>
<td valign="top">TCP</td>
<td valign="top">443 or 80</td>
</tr>
<tr>
<td valign="top">SMTP</td>
<td valign="top">TCP</td>
<td valign="top">25</td>
</tr>
</tbody>
</table>
<h2>Unified Messaging Server Role</h2>
<p>The Unified Messaging server will need essentially the same connectivity as the Hub Transport server role, plus whatever required ports are necessary for your particular VoIP gateway. Consult your vendor’s documentation for those specifics.</p>
<p>&nbsp;</p>
<h2>Mailbox Server Role</h2>
<p>The Mailbox server will also need the same connectivity as detailed for the Hub Transport server role.</p>
<p>&nbsp;</p>
<h2>Limiting RPC ports</h2>
<p>Firewall admins don’t like to carve large holes in their walls, and will often request that you limit the port ranges used by RPC connections. This is supported, and well documented, but be warned. It is <em>very common</em> to limit RPC connections to too narrow a range of ports. This will manifest as random failures particularly at peak load times, with tons of 1722 errors. If you must restrict RPC ports, I suggest you start with a range of at least 1000 ports, and carefully monitor clients and servers to ensure that this is enough to support all connections during peak times.</p>
<h2>Troubleshooting Exchange firewall issues</h2>
<p>Knowing the ports Exchange uses will help you troubleshoot issues. If you suspect Exchange is having a problem caused by a firewall, it’s best if you can work directly with the firewall administrator, who can monitor the source and/or destination IP addresses to see if rules are blocking. If that is not possible, you can test connectivity between Exchange and Active Directory or other Exchange servers by using the <a target="_blank" href="http://www.microsoft.com/download/en/details.aspx?id=24009" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.microsoft.com/download/en/details.aspx?id=24009&amp;referer=');">PortQueryUI</a> tool. You can also use PING, the TCPING tool, or even the Windows Telnet client to see whether you can connect to the port or not.</p>
<p>PortQueryUI can provide specific success or failures, but you can use PING to make sure you can reach the destination server, and then TCPING or Telnet to confirm whether or not you can make a connection on the specific ports required. If you get timeouts or refusals, and you have confirmed the destination server is up and running, then you are probably dealing with a firewall issue. There’s no real workaround here; the firewall admin must permit the required traffic for all services.</p>
<h2>Coming up next</h2>
<p>In Part 4, we will look at the issues that can cause Exchange problems when NICs are involved, and how to troubleshoot those problems. Here’s a rundown of the six parts in this series. We’ll update with live links as each part is published over the next several weeks:</p>
<ol>
<li><a href="http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-dns-part-1/">Introduction and DNS</a></li>
<li><a href="http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-active-directory-part-2/">Active Directory</a></li>
<li>Firewalls (this post)</li>
<li>NICs</li>
<li>RPCs</li>
<li>Client side issues</li>
</ol>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-firewalls-part-3/">Troubleshooting Exchange Networking: Firewalls (Part 3)</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-firewalls-part-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google deserts Exchange users by killing Message Continuity</title>
		<link>http://www.theemailadmin.com/2012/01/google-deserts-exchange-users-by-killing-message-continuity/</link>
		<comments>http://www.theemailadmin.com/2012/01/google-deserts-exchange-users-by-killing-message-continuity/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 16:00:20 +0000</pubDate>
		<dc:creator>John P Mello Jr</dc:creator>
				<category><![CDATA[Email archiving & storage]]></category>
		<category><![CDATA[email management]]></category>
		<category><![CDATA[Exchange server]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[Disaster]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Recovery]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5291</guid>
		<description><![CDATA[Google recently hung a &#8216;going out of business&#8217; sign on its Message Continuity service for users of Microsoft Exchange. Google will continue to provide the service to its users until their contracts run out, but after that, they&#8217;re on their own. Since the service was launched a little over a year ago, &#8220;hundreds&#8221; of businesses [...]<p><a href="http://www.theemailadmin.com/2012/01/google-deserts-exchange-users-by-killing-message-continuity/">Google deserts Exchange users by killing Message Continuity</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2Fgoogle-deserts-exchange-users-by-killing-message-continuity%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2012_2F01_2Fgoogle-deserts-exchange-users-by-killing-message-continuity_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2Fgoogle-deserts-exchange-users-by-killing-message-continuity%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.theemailadmin.com/wp-content/uploads/2012/01/Google.png.jpg"><img class="size-medium wp-image-5317 alignright" style="border: 0px solid black; margin: 10px;" title="Google.png" src="http://www.theemailadmin.com/wp-content/uploads/2012/01/Google.png-300x125.jpg" alt="" width="300" height="125" /></a>Google recently hung a &#8216;going out of business&#8217; sign on its Message Continuity service for users of Microsoft Exchange. Google will continue to provide the service to its users until their contracts run out, but after that, they&#8217;re on their own.</p>
<p>Since the service was launched a little over a year ago, &#8220;hundreds&#8221; of businesses have subscribed to the offering, which uses Google&#8217;s cloud to provide email continuity when a Microsoft Exchange environment is interrupted for any reason.</p>
<p>Hundreds of users, though, can&#8217;t compete with the &#8220;millions&#8221; of businesses that have moved their entire email operation to Google Apps, so Searchzilla has decided to scrap its continuity product for Exchange  and concentrate all its resources on its application suite.<span id="more-5291"></span></p>
<p>Current users of the continuity product were &#8220;encouraged to consider using Google Apps as their primary messaging and collaboration platform&#8221; in a <a target="_blank" href="http://googleblog.blogspot.com/2012/01/renewing-old-resolutions-for-new-year.html" onclick="pageTracker._trackPageview('/outgoing/googleblog.blogspot.com/2012/01/renewing-old-resolutions-for-new-year.html?referer=');">company blog</a> written by Vice President of Product Management Dave Girouard.</p>
<p>The brusque departure by Google from the Exchange disaster recovery scene contrasts sharply with how it entered it:</p>
<blockquote><p>&#8220;Google Message Continuity advances our commitment to providing rapidly deployed, cost-effective email management solutions for organizations of all sizes,&#8221; Enterprise Product Manager Matthew O’Connor <a target="_blank" href="http://googleenterprise.blogspot.com/2010/12/bringing-gmails-reliability-to.html#utm_campaign=en&amp;utm_source=en-na-us-ogbblog-gmclaunch_12092010&amp;utm_medium=blog" onclick="pageTracker._trackPageview('/outgoing/googleenterprise.blogspot.com/2010/12/bringing-gmails-reliability-to.html_utm_campaign=en_amp_utm_source=en-na-us-ogbblog-gmclaunch_12092010_amp_utm_medium=blog?referer=');">wrote</a> when the continuity product was announced.</p></blockquote>
<p>Looking back on the announcement, it appears that Google&#8217;s &#8220;commitment&#8221; to the Exchange market was as solid as an adolescent&#8217;s commitment to the latest fad.</p>
<p>That&#8217;s not to say that Google&#8217;s intentions in offering an Exchange product weren&#8217;t clear from the start for careful readers of the company&#8217;s pronouncements. &#8220;Additionally, for organizations interested in eventually moving to Google Apps, Google Message Continuity can provide a smooth bridge to the cloud,&#8221; O&#8217;Connor slyly observed in his blog item.</p>
<p>O&#8217;Connor&#8217;s colleague, Rajen Sheth, the group product manager for Google Apps had a similar pitch at the time:</p>
<blockquote><p>&#8220;Google Message Continuity can also help organizations transition to Google Apps down the road,&#8221; he <a target="_blank" href="http://googleblog.blogspot.com/2010/12/introducing-google-message-continuity.html" onclick="pageTracker._trackPageview('/outgoing/googleblog.blogspot.com/2010/12/introducing-google-message-continuity.html?referer=');">wrote</a>. &#8220;Since Microsoft Exchange and Gmail are always in sync with one another, there’s no need to migrate email data when eventually deploying Google Apps.&#8221;</p></blockquote>
<p>Little did those who signed on for Google&#8217;s continuity solution realize when they did so that if they didn&#8217;t &#8220;transition&#8221; to Google Apps fast enough to suit the Ferret King, they&#8217;d be left looking for another business interruption solution within a year&#8217;s time.</p>
<p>Google has been criticized in the past for its flighty attitude toward product development. Some detractors maintain that Google often enters markets to be disruptive, not competitive. Like a <a target="_blank" href="http://www.onlineorganizing.com/NewslettersArticle.asp?newsletter=go&amp;article=79" onclick="pageTracker._trackPageview('/outgoing/www.onlineorganizing.com/NewslettersArticle.asp?newsletter=go_amp_article=79&amp;referer=');">sea gull boss</a>, it will undercut competitors in a market and when things don&#8217;t work, abandon that market, leaving customers who had faith in the Google brand to clean up the mess.</p>
<p>That kind of product management may work with consumers, but it leaves something to be desired in the business world. Google&#8217;s competitor in the enterprise market, Microsoft, knows that. While the Redmond crew have suffered a few slings and arrows for sticking with products too long, their commitment to legacy products has been an important, if sometimes overlooked, part of their success in the business market.</p>
<p>Google&#8217;s forsaking of Message Continuity brings to mind some remarks by Microsoft Senior Director of Online Services Tom Rizzo in his famous &#8220;Google Graveyard Spooks Customers&#8221; blog written on Halloween last year:</p>
<blockquote><p>&#8220;Google releases experimental products and tracks adoption to determine whether to continue providing them,&#8221; he <a target="_blank" href="http://blogs.technet.com/b/whymicrosoft/archive/2011/10/31/google-graveyard-spooks-customers.aspx" onclick="pageTracker._trackPageview('/outgoing/blogs.technet.com/b/whymicrosoft/archive/2011/10/31/google-graveyard-spooks-customers.aspx?referer=');">wrote</a>. &#8220;Its products are like spaghetti, Google throws them up against the wall to see if they stick.&#8221;</p>
<p>&#8220;The burials of de-supported products are more examples of what is convenient for Google and not good for business,&#8221; he added.</p></blockquote>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2012/01/google-deserts-exchange-users-by-killing-message-continuity/">Google deserts Exchange users by killing Message Continuity</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2012/01/google-deserts-exchange-users-by-killing-message-continuity/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>7 Reasons Public Folders Need to Go Away</title>
		<link>http://www.theemailadmin.com/2012/01/7-reasons-public-folders-need-to-go-away/</link>
		<comments>http://www.theemailadmin.com/2012/01/7-reasons-public-folders-need-to-go-away/#comments</comments>
		<pubDate>Mon, 23 Jan 2012 14:00:38 +0000</pubDate>
		<dc:creator>Casper Manes</dc:creator>
				<category><![CDATA[Exchange server]]></category>
		<category><![CDATA[Exchange 2010]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5305</guid>
		<description><![CDATA[If you are still on an Exchange 2003 or 2007 platform and are starting to plan your upgrade to Exchange 2010 (or your to the cloud), you are probably looking at your public folders and thinking to yourself: “oh gods no please don’t make me go through them! I promise I will be good from [...]<p><a href="http://www.theemailadmin.com/2012/01/7-reasons-public-folders-need-to-go-away/">7 Reasons Public Folders Need to Go Away</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2F7-reasons-public-folders-need-to-go-away%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2012_2F01_2F7-reasons-public-folders-need-to-go-away_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2F7-reasons-public-folders-need-to-go-away%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<div><a href="http://www.theemailadmin.com/wp-content/uploads/2012/01/folders.jpg"><img class="alignright size-full wp-image-5306" style="border: 0px solid black; margin: 10px;" src="http://www.theemailadmin.com/wp-content/uploads/2012/01/folders.jpg" alt="" width="238" height="212" /></a>If you are still on an Exchange 2003 or 2007 platform and are starting to plan your upgrade to Exchange 2010 (or your to the cloud), you are probably looking at your public folders and thinking to yourself: “oh gods no please don’t make me go through them! I promise I will be good from now on and eat my vegetables and clean my room please oh please oh please don’t make me deal with the public folders and please don’t send me to the cornfield!”. Okay, you might not have quite that, emotional reaction, but if you aren’t dreading the task, you haven’t started to think about it yet.</div>
<div>Public folders were one of those good ideas that just didn’t really pan out the way folks expected, and their time has come and gone. Unfortunately, they were embraced without governance or guidance, and now companies are faced with hundreds if not thousands of folders in a structure that shows no consistency, with hundreds of thousands of messages scattered hither and yon. Ask your users about their public folders and most of them will respond like you’re talking about their children, but the time has come to start cleaning the house.<span id="more-5305"></span></div>
<div>Here are seven reasons public why folders need to go away. Maybe one of these reasons will be enough for you to start the process:</p>
</div>
<h2>1. Eventually, they won’t be supported anymore.</h2>
<div>While Microsoft has no plans to stop support for Public Folders in Exchange 2010 or the next version, they have stated that Public Folders are being unemphasized, and are encouraging customers to look at alternative ways to store data. The writing is on the wall for Public Folders. Office 365 does not support them at all, and while they are not the only hosted Exchange provider, they do set the bar. And while other hosted Exchange providers are offering Public Folders as an option, a quick perusal indicates they are limited in number and size. Your mileage may vary today, but I don’t expect that to be the case for much longer.</p>
</div>
<h2>2. Anybody remember where we stored that customer list?</h2>
<div>Indexing may be the only way to find anything in a Public Folder store, and that can be time consuming and resource intensive. Public Folder structures tend to resemble a free for all, with little organization to help users find data. Favourites can help, but only if a user can first find where the folder they want to favourite is.</p>
</div>
<h2>3. Collaboration? Not so much.</h2>
<div>Public Folders support permissions, and several users can have write perms to the same folder and its contents, but collaborative editing is not supported.</p>
</div>
<h2>4. Backups? We don’t need no stinking backups!</h2>
<div>Public Folder databases tend to grow out of control, and while you can back up and restore Public Folder databases, individual folders or items within them can be more of a challenge. They don’t get to use recovery storage groups like mailboxes do.</p>
</div>
<h2>5. Public Folder management tools, what Public Folder management tools?</h2>
<div>You can manage Public Folders using the Exchange Management Console and the Shell, but the management is pretty rudimentary. It gets the job done, but only just.</p>
</div>
<h2>6. Wow! I remember that. Gosh, I haven’t seen that in years!</h2>
<div>Public Folders are the garage, basement, attic, and self-storage facilities of corporate data. In an organisation with hundreds to thousands of Public Folders, it’s not at all uncommon to find that maybe a dozen are used by more than a single user, or with any frequency at all. Others are the catch-all bin for distribution list mailings that no one has read in years. Again, you may be the exception that proves the rule, so surprise me in the comments if you really have a dynamic Public Folder structure that users access regularly.</p>
</div>
<h2>7. When I grow up, I want to be SharePoint.</h2>
<div>The successor to Public Folders, both in terms of technology, functionality, and scalability, is SharePoint. Whether by plan or happenstance, SharePoint has all of the features, capabilities, and management tools you could want. Collaboration, search, granular backups, and so many ways to extend the product, make SharePoint the logical replacement for your Public Folders.</p>
</div>
<div>With the writing on the wall for Public Folders, take time now to start the process in your environment. Stop creating new ones, start encouraging data owners to perform their Spring Cleaning, and look to SharePoint or other portal technologies.</div>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2012/01/7-reasons-public-folders-need-to-go-away/">7 Reasons Public Folders Need to Go Away</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2012/01/7-reasons-public-folders-need-to-go-away/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Troubleshooting Exchange Networking: Active Directory (Part 2)</title>
		<link>http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-active-directory-part-2/</link>
		<comments>http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-active-directory-part-2/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 16:54:45 +0000</pubDate>
		<dc:creator>Casper Manes</dc:creator>
				<category><![CDATA[email management]]></category>
		<category><![CDATA[Exchange server]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5260</guid>
		<description><![CDATA[Often Exchange administrators will receive escalated help desk tickets from users complaining that Exchange is “slow” and demanding resolution. These sorts of tickets (slow being at best a relative term, and never specific enough about what precisely is considered to be slow) can be extremely challenging to work, since the subjective nature of slowness is [...]<p><a href="http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-active-directory-part-2/">Troubleshooting Exchange Networking: Active Directory (Part 2)</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2Ftroubleshooting-exchange-networking-active-directory-part-2%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2012_2F01_2Ftroubleshooting-exchange-networking-active-directory-part-2_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2Ftroubleshooting-exchange-networking-active-directory-part-2%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.theemailadmin.com/wp-content/uploads/2012/01/ad.jpg"><img class="alignright size-medium wp-image-5261" style="border-width: 0px;border-color: black;border-style: solid;margin: 10px" src="http://www.theemailadmin.com/wp-content/uploads/2012/01/ad-300x220.jpg" alt="" width="300" height="220" /></a>Often Exchange administrators will receive escalated help desk tickets from users complaining that Exchange is “slow” and demanding resolution. These sorts of tickets (slow being at best a relative term, and never specific enough about what precisely is considered to be slow) can be extremely challenging to work, since the subjective nature of slowness is often combined with an inability to replicate the problem, or the problem is intermittent. The Exchange admin can take a look at the server(s) for high CPU utilization, low memory conditions, disk and network queue lengths exceeding the norm, and finding nothing, shrug it back off to the desktop support team as a client issue. While it is often a client issue, there are several places between Outlook and a user’s mailbox that can cause intermittent slowness, and are fair to call networking bottlenecks. In a six-part series of articles, we’ll look at how Exchange interacts on the network with various other services to help you identify network issues, and troubleshoot them when they occur.<span id="more-5260"></span></p>
<p>In many cases, troubleshooting Exchange network bottlenecks will require a network trace, and may also require performance monitor counters. This series of articles will talk about both of those in general terms; how to use NetMon or Wireshark, and PerfMon are out of scope. In Part 2 of this series, we’re going to discuss how Exchange is dependent upon and interacts with Active Directory on the network.</p>
<h2>Active Directory</h2>
<p>There’s a ton of network interactions between Exchange servers and Active Directory, which is why you are required to have a Global Catalog server in every site in which you have an Exchange server. An Active Directory site is usually defined as a collection of subnets with sufficient bandwidth to support replication, and that can lead to sites spanning WAN links. While the WAN may have sufficient bandwidth and low enough latency to support Active Directory replication and authentication traffic, any AD client that is in a site may connect to, and query, and Domain Controller within that site. When the target of queries is across the WAN, the total latency of the WAN link can add up to noticeable delays. Understanding just how much goes on between your Exchange server and your Global Catalog server may be enough to make you change the word “site” to “subnet.” Exchange servers will bind to a randomly selected domain controller and global catalog server in the same site, to minimize WAN traffic. Ensure that there are redundant servers will keep WAN traffic to a minimum, and optimize Exchange performance.</p>
<blockquote><p>Note: Read-Only domain controllers are not usable by Exchange. Exchange must access writable domain controllers.</p></blockquote>
<h2>Configuration information</h2>
<p>The configuration partition in Active Directory contains critical data about the forest-wide configuration. Exchange configuration information can be found in a subfolder of the Services container in the Configuration partition. This includes:</p>
<ol>
<li>Address lists</li>
<li>Address and display templates</li>
<li>Administrative groups</li>
<li>Client access settings</li>
<li>Connections</li>
<li>Messaging records management, mobile, and UM mailbox policies</li>
<li>Global settings</li>
<li>E-mail address policies</li>
<li>System policies</li>
<li>Transport settings</li>
</ol>
<p>All Exchange server roles, except the Edge Transport Server, will query AD directly for this information. Here’s more specific information on how each role depends upon AD. You can also read more about that here <a target="_blank" href="http://technet.microsoft.com/en-us/library/aa998561.aspx" target="_blank" onclick="pageTracker._trackPageview('/outgoing/technet.microsoft.com/en-us/library/aa998561.aspx?referer=');">http://technet.microsoft.com/en-us/library/aa998561.aspx</a>.</p>
<h2>Hub Transport Server Role</h2>
<p>The Hub Transport server must contact Active Directory to perform message categorization, necessary for recipient lookup and routing resolution. This will include the location of the recipient&#8217;s mailbox and any restrictions or permissions that may apply. It will also use LDAP queries to expand the membership of distribution lists to determine membership of a dynamic distribution list.</p>
<p>The Hub Transport Server will use cached information regarding the AD site topology to determine routing for message delivery between sites. If the Hub Transport server determines that a mailbox is in the same site, it will deliver the message directly to the Mailbox server, otherwise it will route the message to a Hub Transport server in the destination site.</p>
<p>The Hub Transport server uses the application partition of Active Directory to store and access configuration information, including transport rules, journal rules, and connectors.</p>
<h2>Client Access Server Role</h2>
<p>The Client Access server role services clients connecting from the Internet who want to use Outlook Web App, POP3, IMAP4, or ActiveSync. When a connection is received, the Client Access server authenticates the user against AD and then queries to determine the appropriate mailbox server. If the user&#8217;s mailbox is in the same site, the user is connected directly to their mailbox. If in a different site, the connection is redirected to a Client Access server in the remote site.</p>
<h2>Unified Messaging Server Role</h2>
<p>The Unified Messaging server queries Active Directory to retrieve global configuration information, such as dial plans, IP gateways, and hunt groups. When a message is received by the Unified Messaging server, it matches the telephone number to a recipient address, then the location of the user’s mailbox. It can then route the voicemail message to a Hub Transport server for delivery to the mailbox.</p>
<h2>Mailbox Server Role</h2>
<p>The Mailbox server also stores configuration information Active Directory, including agent configuration, address lists, and policies. The Mailbox server will use this to enforce mailbox policies and global settings.</p>
<h2>Edge Transport Server Role</h2>
<p>The Edge Transport server doesn&#8217;t access Active Directory. It stores it configuration in an instance of Active Directory Lightweight Directory Services. It uses an Edge Subscription to subscribe to a Hub Transport server in an Active Directory site, which will use the Microsoft Exchange EdgeSync service to synchronize Active Directory data to AD LDS.</p>
<h2>Site definitions</h2>
<p>There are two rules of thumb for Active Directory site design and how it impacts Exchange:</p>
<ol>
<li>Make sure every single subnet that hosts an Exchange server belongs to a site</li>
<li>Don’t let any of those sites span the WAN, no matter how much bandwidth you have available.</li>
</ol>
<p>If an Exchange server cannot determine its AD site because the subnet does not belong to a site, the MSExchangeDSA will fail with a 2114 and MSExchangeSA will fail with a 1005. In both cases it is because Exchange could not determine the AD site based on the subnet. Even the fastest WAN links have higher latency than the slowest LAN links, and that latency will have a cumulative and negative impact on Exchange performance as the server is waiting on responses from domain controllers if the DC is on the far side of the WAN from the Exchange server.</p>
<h2>Troubleshooting Exchange interaction with Active Directory</h2>
<p>Knowing how Exchange depends upon Active Directory will help you troubleshoot issues. The four main categories of problem are:</p>
<ol>
<li>Network latency between the Exchange server and GC/DC</li>
<li>Firewall rules blocking connection attempts</li>
<li>Incorrect site configuration</li>
<li>Replication problems within AD</li>
</ol>
<p>If you suspect Exchange is having a problem accessing Active Directory, first ensure that Exchange can communicate with a domain controller for each domain in the forest that has users with mailboxes, and that there is at least one domain controllers in the same site that is a global catalog server. Look for errors including 2114, 1005, and 1722.</p>
<p>Test connectivity between Exchange and Active Directory by using the <a target="_blank" href="http://www.microsoft.com/download/en/details.aspx?id=24009" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.microsoft.com/download/en/details.aspx?id=24009&amp;referer=');">PortQueryUI</a> tool, and the response times to LDAP queries using <a target="_blank" href="http://support.microsoft.com/kb/224543" target="_blank" onclick="pageTracker._trackPageview('/outgoing/support.microsoft.com/kb/224543?referer=');">LDP.EXE</a> and a protocol analyzer. And of course, ensure that you have no replication problems with your Active Directory. A domain controller that stops replicating because of DNS islanding or other connectivity issues with the rest of the forest will directly impact AD. Changes in AD (like name, group membership, SMTP proxy addresses, etc.) must replicate to all domain controllers that Exchange relies upon before you can be sure that Exchange will pick up on/display the differences.</p>
<p>Performance will be enhanced by redundancy. When possible, ensure that there are multiple global catalog servers in the same site as every Exchange server, and that every domain in the forest with Exchange users is represented.</p>
<p>Performance of Exchange will also improve directly with the capabilities of those domain controllers. When the DC is able to cache the entire Active Directory in memory, response to queries from Exchange will be much faster. Look at implementing 64bit DCs with enough RAM to cache the entire database.</p>
<p>On a domain controller a quick way to check for replication problems is to run this command in an administrative command prompt</p>
<p><code>Repadmin /replsummary [enter]</code></p>
<p>Check for fails, servers that are down or unreachable, and larger times since the last replication event.</p>
<h2>Coming up next</h2>
<p>In Part 3, we will look at the connectivity requirements for Exchange as they relate to firewalls, and how to troubleshoot those problems. Here’s a rundown of the six parts in this series. We’ll update with live links as each part is published over the next several weeks:</p>
<ol>
<li><a href="http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-dns-part-1/">Introduction and DNS</a></li>
<li><a href="http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-active-directory-part-2/" target="_blank">Active Directory</a></li>
<li><a href="http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-firewalls-part-3/" target="_blank">Firewalls</a></li>
<li>NICs</li>
<li>RPCs</li>
<li>Client side issues</li>
</ol>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-active-directory-part-2/">Troubleshooting Exchange Networking: Active Directory (Part 2)</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-active-directory-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cool Tools: Microsoft Exchange Server User Monitor</title>
		<link>http://www.theemailadmin.com/2012/01/cool-tools-microsoft-exchange-server-user-monitor/</link>
		<comments>http://www.theemailadmin.com/2012/01/cool-tools-microsoft-exchange-server-user-monitor/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 14:00:20 +0000</pubDate>
		<dc:creator>Casper Manes</dc:creator>
				<category><![CDATA[Exchange server]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5207</guid>
		<description><![CDATA[Whether you are troubleshooting an Exchange server performance issue, trying to see how well you sized your servers, or just want a better idea of what your users are doing, the Exchange Server User Monitor from Microsoft (or ExMon as it is known to its friends) is a great, free tool you can use to [...]<p><a href="http://www.theemailadmin.com/2012/01/cool-tools-microsoft-exchange-server-user-monitor/">Cool Tools: Microsoft Exchange Server User Monitor</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2Fcool-tools-microsoft-exchange-server-user-monitor%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2012_2F01_2Fcool-tools-microsoft-exchange-server-user-monitor_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2Fcool-tools-microsoft-exchange-server-user-monitor%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.theemailadmin.com/wp-content/uploads/2012/01/toolbox.jpg"><img class="alignright size-full wp-image-5208" style="border-width: 0px; border-color: black; border-style: solid; margin: 10px;" src="http://www.theemailadmin.com/wp-content/uploads/2012/01/toolbox.jpg" alt="" width="253" height="199" /></a>Whether you are troubleshooting an Exchange server performance issue, trying to see how well you sized your servers, or just want a better idea of what your users are doing, the Exchange Server User Monitor from Microsoft (or ExMon as it is known to its friends) is a great, free tool you can use to gather all sorts of information about your Exchange environment. The Exchange Server User Monitor has been around for years, and this latest version, 14.2.247.5, was released in December of 2011.</p>
<p>You can download ExMon from <a target="_blank" href="http://www.microsoft.com/download/en/details.aspx?id=11461" onclick="pageTracker._trackPageview('/outgoing/www.microsoft.com/download/en/details.aspx?id=11461&amp;referer=');">this link</a> and use to evaluate a server, or an individual user’s interactions with that server. As with many tools from Microsoft, this has been around for years, but gets an update and a facelift every so often. With ExMon, you can view the following information:<span id="more-5207"></span></p>
<ul>
<li>IP addresses used by clients</li>
<li>Microsoft Office Outlook® versions and mode, such as Cached Exchange Mode and classic online mode</li>
<li>Outlook client-side monitoring data</li>
<li>Resource use, such as:
<ul>
<li>CPU usage</li>
<li>Server-side processor latency</li>
<li>Total latency for network and processing with Outlook 2003 and later versions of MAPI</li>
<li>Network bytes</li>
<li>And more.</li>
</ul>
</li>
</ul>
<p>The download is a simple MSI file that weighs in under 2MB in size, and the install is of the next agree next enter variety. You don’t need to run this tool on your Exchange server; It can run just fine on another server or on your workstation when you want to use it to view trace files gathered by the tool running on an actual Exchange server. Just launch it from the command line passing the ETL filename in the command, like exmon.exe c:\temp\exch01.etl [enter]. Note, if you are going to run the tool on your workstation, you can find it at C:\Program Files (x86)\Exchange User Monitor. There’s a reg file in that directory that you should import into your registry so the tool can work properly.</p>
<p>You can collect data for use with ExMon in one of three ways:</p>
<ul>
<li>Collecting data directly with ExMon</li>
<li>Collecting data by using System Monitor (Windows 2000 Server and Windows Server 2003 only)</li>
<li>Collecting data by using command-line tools.</li>
</ul>
<p>Using ExMon directly to collect data is best done when you are looking to “spot check” a server and plan to gather data for only short intervals. ExMon trace files can become very large, especially when the monitor interval is long, and parsing these files can be both CPU and RAM intensive.</p>
<p>For trending data, it’s best to use System Monitor, and schedule it with a reasonable sampling frequency. It’s best to start out small, monitor the size of the files generated, and adjust your sampling interval and the duration of your monitoring as you see fit.</p>
<p>While the documentation has not been updated yet for this version, you can read more about how to use ExMon at the TechNet site: <a target="_blank" href="http://technet.microsoft.com/en-us/library/bb508855(EXCHG.65).aspx" onclick="pageTracker._trackPageview('/outgoing/technet.microsoft.com/en-us/library/bb508855_EXCHG.65_.aspx?referer=');">http://technet.microsoft.com/en-us/library/bb508855(EXCHG.65).aspx</a>.</p>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2012/01/cool-tools-microsoft-exchange-server-user-monitor/">Cool Tools: Microsoft Exchange Server User Monitor</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2012/01/cool-tools-microsoft-exchange-server-user-monitor/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Troubleshooting Exchange Networking: DNS (Part 1)</title>
		<link>http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-dns-part-1/</link>
		<comments>http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-dns-part-1/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 14:00:36 +0000</pubDate>
		<dc:creator>Casper Manes</dc:creator>
				<category><![CDATA[Exchange server]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5174</guid>
		<description><![CDATA[Often Exchange administrators will receive escalated help desk tickets from users complaining that Exchange is “slow” and demanding resolution. These sorts of tickets (slow being at best a relative term, and never specific enough about what precisely is considered to be slow) can be extremely challenging to work, since the subjective nature of slowness is [...]<p><a href="http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-dns-part-1/">Troubleshooting Exchange Networking: DNS (Part 1)</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2Ftroubleshooting-exchange-networking-dns-part-1%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2012_2F01_2Ftroubleshooting-exchange-networking-dns-part-1_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2Ftroubleshooting-exchange-networking-dns-part-1%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.theemailadmin.com/wp-content/uploads/2011/12/diagram1.jpg"><img class="alignright size-full wp-image-5175" style="border-width: 0px;border-color: black;border-style: solid;margin: 10px" src="http://www.theemailadmin.com/wp-content/uploads/2011/12/diagram1.jpg" alt="" width="192" height="142" /></a>Often Exchange administrators will receive escalated help desk tickets from users complaining that Exchange is “slow” and demanding resolution. These sorts of tickets (slow being at best a relative term, and never specific enough about what precisely is considered to be slow) can be extremely challenging to work, since the subjective nature of slowness is often combined with an inability to replicate the problem, or the problem is intermittent. The Exchange admin can take a look at the server(s) for high CPU utilization, low memory conditions, disk and network queue lengths exceeding the norm, and finding nothing, shrug it back off to the desktop support team as a client issue. While it is often a client issue, there are several places between Outlook and a user’s mailbox that can cause intermittent slowness, and are fair to call networking bottlenecks. In a six part series of articles, we’ll look at how Exchange interacts on the network with various other services to help you identify network issues, and troubleshoot them when they occur.</p>
<p>In many cases, troubleshooting Exchange network bottlenecks will require a network trace, and may also require performance monitor counters. This series of articles will talk about both of those in general terms; how to use <a target="_blank" href="http://www.microsoft.com/download/en/details.aspx?id=4865" onclick="pageTracker._trackPageview('/outgoing/www.microsoft.com/download/en/details.aspx?id=4865&amp;referer=');">NetMon</a> or <a target="_blank" href="http://www.wireshark.org/" onclick="pageTracker._trackPageview('/outgoing/www.wireshark.org/?referer=');">Wireshark</a>, and PerfMon are out of scope. In Part 1 of this series, we’re going to discuss how Exchange is dependent upon and interacts with DNS on the network.<span id="more-5174"></span></p>
<h2>DNS</h2>
<p>DNS is one of the most important, and fundamental services on any TCP/IP network and the critical role it plays in all aspects of Exchange cannot be understated. Every single interaction between servers depends on being able to resolve a name to an IP address, and being able to quickly (and correctly) perform name resolution can set the tone for the entire transaction.</p>
<p>Most of you will be using AD integrated DNS, so your DNS servers will be domain controllers. Keep in mind that the default TTL for AD integrated zones is 3600, so your Exchange servers will cache responses for an hour before trying to resolve the same name again. Using AD integrated zones also means that changes to DNS records must replicate to all domain controllers, and then the TTL must expire before you can assume that a client or Exchange server is resolving the right IP address to name.</p>
<p>To ensure that the right IP address is being provided in response to a query, open an administrative command prompt on the Exchange server you are troubleshooting, and use the NSLOOKUP command to query the primary DNS server, and the secondary. Confirm that both provide the same result and that it is correct, and then ping the destination server by name. Compare the IP address in the PING command to what NSLOOKUP returned to be sure that your Exchange server is trying to reach the right address. If it is not, issue the ipconfig /flushdns command to clear the local cache, and try again.</p>
<pre>&gt;nslookup exch2.example.com
Server:  dc1.example.com
Address:  192.168.0.2
Name:    exch2.example.com
Address:  192.168.0.6
&gt;ping exch2.example.com
Pinging exch2.example.com [192.168.0.9] with 32 bytes of data:
Reply from 192.168.0.104: Destination host unreachable.
Ping statistics for 192.168.0.9:
    Packets: Sent = 1, Received = 1, Lost = 0 (0% loss),

&gt;ipconfig /flushdns
Windows IP Configuration
Successfully flushed the DNS Resolver Cache.

&gt;ping exch2.example.com
Pinging exch2.example.com [192.168.0.6] with 32 bytes of data:
Reply from 192.168.0.6: bytes=32 time=4ms TTL=128
Ping statistics for 192.168.0.6:
    Packets: Sent = 1, Received = 1, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
    Minimum = 2ms, Maximum = 2ms, Average = 2ms</pre>
<p>You want to place DNS servers as “close” to your Exchange servers as possible, configure your Exchange servers to use the closest DNS servers they can, and to keep the application response time (ART) for DNS queries as low as possible. If it takes more than 50 milliseconds to resolve a DNS performance will suffer. You can use a protocol analyzer like Microsoft’s NetMon or Wireshark to analyze that, or you can just use the <strong>dig</strong> command. A Windows port can be downloaded from <a target="_blank" href="http://members.shaw.ca/nicholas.fong/dig/" onclick="pageTracker._trackPageview('/outgoing/members.shaw.ca/nicholas.fong/dig/?referer=');">here</a>. The <strong>dig</strong> command can tell you how long it takes to resolve a name.</p>
<p>&nbsp;</p>
<pre>&gt;dig @192.168.0.2 -t a exch2.example.com
; &lt;&lt;&gt;&gt; DiG 9.3.2 &lt;&lt;&gt;&gt; @192.168.0.2 -t a exch2.example.com
; (1 server found)
;; global options:  printcmd
;; Got answer:
;; -&gt;&gt;HEADER&lt;&lt;- opcode: QUERY, status: NOERROR, id: 104
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0
;; QUESTION SECTION:
;exch2.example.com.             IN      A

;; ANSWER SECTION:
exch2.example.com.      3600    IN      A       192.168.0.6
;; Query time: 8 msec
;; SERVER: 192.168.0.2#53(192.168.0.2)
;; WHEN: Fri Dec 30 15:29:26 2011
;; MSG SIZE  rcvd: 51</pre>
<p>Eight milliseconds is not bad at all.</p>
<p>Your internal Exchange servers (CAS, HUB, UC, and Mailbox) should be configured to use local servers for both their primary and secondary DNS. In sites where there is only DNS server, you really ought to add another, but if you cannot, configure the secondary to be the one with the least latency. That won’t always be the one on the other side of the connection with the greatest bandwidth; test.</p>
<p>Your Edge Transport servers should be configured to resolve DNS queries to servers as close to the Internet edge as possible, and these should be able to go straight to root rather than forwarding to your ISP. That way, every MX lookup, SPF lookup, DKIM lookup, and PTR lookup that the Edge must perform when sending or receiving a message can complete as quickly as possible. Configuring the Exchange server to query an internal DNS server, which then must forward to your ISP, which then may forward to another, adds lots of latency to every DNS lookup. Sure, the operating system will cache those lookups, but caches expire and you are exchanging email with hundreds or thousands of domains each day. Keep in mind that changes beyond your control will be made as other admins move their services to different servers, networks, etc. Changes to DNS records take time to replicate; if you are troubleshooting a connectivity failure to a remote system, don’t forget that they may be in the middle of a change and DNS records are simply stale. Time will sort that out for you.</p>
<p>Considering that DNS queries must be resolved in order for an Exchange server to connect to the Global Catalog server, which it must do for authentication, to expand distribution lists, to look up topology information, and to do practically anything else, and you will understand that you don’t want to waste time just trying to resolve a name to an IP address.</p>
<h2>Coming up next</h2>
<p>In Part 2, we will look at how Exchange interacts with Active Directory at the network level, where bottlenecks can occur, and how to troubleshoot those problems. Here’s a rundown of the six parts in this series. We’ll update with live links as each part is published over the next several weeks.</p>
<ol>
<li><a href="http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-dns-part-1/" target="_blank">Introduction and DNS</a></li>
<li><a href="http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-active-directory-part-2/" target="_blank">Active Directory</a></li>
<li><a href="http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-firewalls-part-3/" target="_blank">Firewalls</a></li>
<li>NICs</li>
<li>RPCs</li>
<li>Client side issues</li>
</ol>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-dns-part-1/">Troubleshooting Exchange Networking: DNS (Part 1)</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2012/01/troubleshooting-exchange-networking-dns-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>No smartphone, no problem. Meet SP2’s OMA.</title>
		<link>http://www.theemailadmin.com/2012/01/no-smartphone-no-problem-meet-sp2%e2%80%99s-oma/</link>
		<comments>http://www.theemailadmin.com/2012/01/no-smartphone-no-problem-meet-sp2%e2%80%99s-oma/#comments</comments>
		<pubDate>Mon, 02 Jan 2012 14:00:19 +0000</pubDate>
		<dc:creator>Casper Manes</dc:creator>
				<category><![CDATA[Exchange server]]></category>
		<category><![CDATA[email management]]></category>
		<category><![CDATA[Exchange 2010]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5151</guid>
		<description><![CDATA[If you’ve been working with Exchange for several years, you might remember a little thing from Exchange 2003 called Outlook Mobile Access. This HTML only version of browser-based access to your Exchange mailbox was developed at a time when smart phones were mostly a dream, but web browser capable phones, Palm Pilots, and Windows CE [...]<p><a href="http://www.theemailadmin.com/2012/01/no-smartphone-no-problem-meet-sp2%e2%80%99s-oma/">No smartphone, no problem. Meet SP2’s OMA.</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2Fno-smartphone-no-problem-meet-sp2%25e2%2580%2599s-oma%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2012_2F01_2Fno-smartphone-no-problem-meet-sp2_25e2_2580_2599s-oma_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2Fno-smartphone-no-problem-meet-sp2%25e2%2580%2599s-oma%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.theemailadmin.com/wp-content/uploads/2011/12/mini.jpg"><img class="alignright size-full wp-image-5152" style="border-width: 0px; border-color: black; border-style: solid; margin: 10px;" src="http://www.theemailadmin.com/wp-content/uploads/2011/12/mini.jpg" alt="Sorry, every time I read OWA Mini I think &quot;Mini Me.&quot;" width="230" height="219" /></a>If you’ve been working with Exchange for several years, you might remember a little thing from Exchange 2003 called Outlook Mobile Access. This HTML only version of browser-based access to your Exchange mailbox was developed at a time when smart phones were mostly a dream, but web browser capable phones, Palm Pilots, and Windows CE devices ruled the portable space. In a world where bell bottoms are once again popular, it should come as little surprise that OMA is back, this time courtesy of Service Pack 2 for Exchange 2010.</p>
<p>The Exchange Team at Microsoft decided to bring back the mini version of Outlook Web Access because apparently there is still a large demand for mobile access to Exchange email in parts of the world where web capable, but not fully “smart” phones, are still in use. These devices have less horsepower, fewer features, and only a basic HTML web browser, but cost less and require less bandwidth as well, making them perfect for area with less infrastructure, and very popular amongst prepaid plan customers.<span id="more-5151"></span></p>
<p><strong>What is OMA?</strong></p>
<p>Outlook Mobile Access (OMA), or more accurately in Exchange 2010 Outlook Web Access Mini (OWA Mini), is built on a series of forms and requires only HTML and cookie support in the mobile browser. To provide maximum compatibility, it is based on HTML 2.0.</p>
<p><strong>What do you get in OWA Mini?</strong></p>
<p>OWA Mini includes the following features:</p>
<ul>
<li>Mailbox access, including all subfolders</li>
<li>Calendar access</li>
<li>Contact list access</li>
<li>Task list access</li>
<li>GAL access</li>
<li>Meeting request processing</li>
<li>Timezone</li>
<li>OOF</li>
</ul>
<p><strong>How do users access it?</strong></p>
<p>There is no client detection for OWA Mini. In fact, it is just a vdir called \OMA under the \OWA virtual directory. Unless you provide users a better way to get there, they will have to enter the full URL <a target="_blank" href="https://mail.example.com/owa/oma" onclick="pageTracker._trackPageview('/outgoing/mail.example.com/owa/oma?referer=');">https://mail.example.com/owa/oma</a>, which is pretty lame, so do your users a favour and create a mobile friendly URL that will redirect them to the OWA Mini path. Try <a target="_blank" href="http://m.example.com/" onclick="pageTracker._trackPageview('/outgoing/m.example.com/?referer=');">http://m.example.com</a> and have that do a 301 or use a refresh tag to direct mobile users to the full HTTPS path.</p>
<p><strong>Other things to know</strong></p>
<p>OWA Mini uses basic authentication only, so you must support that in your IIS instance. If you are publishing OWA Mini through TMG, you won’t be able to use FBA. There is no authentication cookie or Javascript involved, so there is no logoff button in OWA Mini. It does use the “Public” timeout for sessions, so yes, users can go right back into their mailbox after closing their browser without authenticating again if they are quick enough. You can also enable or disable OWA Mini using the Exchange Management Shell. Use the <em>Set-OWAVirtualDirectory</em> cmdlet with the <em>–OWAMiniEnabled </em>Boolean parameter to turn it completely on or off, or use the <em>Set-OWAMailboxPolicy</em> cmdlet with the <em>–OWAMiniEnabled</em> Boolean to turn it on or off on a per user/group basis with policies.</p>
<p>OWA Mini may have limited use for a company that has Windows Mobile, Droids, Blackberries, and iPhones, but if your users are global, or just prefer less expensive web phones, OWA Mini is a great way to provide them access to their email while on the go.</p>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2012/01/no-smartphone-no-problem-meet-sp2%e2%80%99s-oma/">No smartphone, no problem. Meet SP2’s OMA.</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2012/01/no-smartphone-no-problem-meet-sp2%e2%80%99s-oma/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Microsoft Releases Critical, Out Of Band Update</title>
		<link>http://www.theemailadmin.com/2011/12/microsoft-releases-critical-out-of-band-update/</link>
		<comments>http://www.theemailadmin.com/2011/12/microsoft-releases-critical-out-of-band-update/#comments</comments>
		<pubDate>Fri, 30 Dec 2011 21:41:23 +0000</pubDate>
		<dc:creator>Casper Manes</dc:creator>
				<category><![CDATA[Exchange server]]></category>
		<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Microsoft Outlook]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5171</guid>
		<description><![CDATA[Users of practically every supported version of Windows, whether desktop or server, 32 bit or 64 bit, and even the low attack surface Windows Server Core should immediately review Microsoft Security Bulletin MS11-100 and begin testing and deployment of this patch as soon as possible. The patch, covered in KB2638420 addresses four vulnerabilities in the [...]<p><a href="http://www.theemailadmin.com/2011/12/microsoft-releases-critical-out-of-band-update/">Microsoft Releases Critical, Out Of Band Update</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2011%2F12%2Fmicrosoft-releases-critical-out-of-band-update%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2011_2F12_2Fmicrosoft-releases-critical-out-of-band-update_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2011%2F12%2Fmicrosoft-releases-critical-out-of-band-update%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a target="_blank" href="http://www.theemailadmin.com/wp-content/uploads/2011/12/MicrosoftLogo.jpg"><img class="size-full wp-image-5193 alignright" style="border-width: 0px; border-color: black; border-style: solid; margin: 10px;" title="MicrosoftLogo" src="http://www.theemailadmin.com/wp-content/uploads/2011/12/MicrosoftLogo.jpg" alt="" width="216" height="215" /></a>Users of practically every supported version of Windows, whether desktop or server, 32 bit or 64 bit, and even the low attack surface Windows Server Core should immediately review <a href="http://technet.microsoft.com/en-us/security/bulletin/ms11-100" onclick="pageTracker._trackPageview('/outgoing/technet.microsoft.com/en-us/security/bulletin/ms11-100?referer=');">Microsoft Security Bulletin MS11-100</a> and begin testing and deployment of this patch as soon as possible. The patch, covered in <a target="_blank" href="http://support.microsoft.com/kb/2638420" onclick="pageTracker._trackPageview('/outgoing/support.microsoft.com/kb/2638420?referer=');">KB2638420</a> addresses four vulnerabilities in the Microsoft .NET Framework, including 1.1 SP1, 2.0 SP2, 3.5 SP1, 3.5.1, and 4. Three of the four were privately reported, while the last one has been publicly disclosed.<span id="more-5171"></span></p>
<p>In a worst case scenario, an unauthenticated attacker could send a specially crafted request to an unpatched server, and gain elevated privileges which could then execute remote code on the impacted server. Exploiting this vulnerability requires that the attacker be able to register an account on an ASP.NET site, and know an existing username. Of course, when so few follow recommended practices and rename the Administrator account, or use common accounts like Admin, Guest, etc., this doesn’t present too high a bar for any site that allows user registrations.</p>
<p>In all, four separate CVEs are addressed by this update, including:</p>
<ol>
<li>Collisions in HashTable May Cause DoS Vulnerability &#8211; CVE-2011-3414</li>
<li>Insecure Redirect in .NET Form Authentication Vulnerability &#8211; CVE-2011-3415</li>
<li>ASP.Net Forms Authentication Bypass Vulnerability &#8211; CVE-2011-3416</li>
<li>ASP.NET Forms Authentication Ticket Caching Vulnerability &#8211; CVE-2011-3417</li>
</ol>
<p>KB2638420 replaces several earlier patches that were released to address some of these vulnerabilities. The first, involving collisions in HashTable, can lead to a denial of service, which can be just as significant an impact to users as any other kind of attack. Exchange admins running Edge Transport Servers and/or Client  Access Servers exposed to the Internet should be aware of this and deploy this security patch as soon as possible. All Exchange server roles require the .NET Framework 3.5 SP1 and are therefore vulnerable, so all Hub Transport, Unified Messaging, and Mailbox servers should also be patched.</p>
<p>As with all patches, you should test this in your lab environment before deploying to production, and follow your appropriate change control processes, but that does not mean you should wait until after the New Year to start evaluating this patch. Microsoft released it out of band (instead of waiting for the normal patch Tuesday in January) because this does address a publicly disclosed vulnerability, and the combined impact should a server be successfully exploited is so critical. When patching Exchange, apply this patch to your server roles in the following order:</p>
<ol>
<li>Edge Transport</li>
<li>Client Access</li>
<li>Hub Transport</li>
<li>Mailbox</li>
<li>Unified Messaging.</li>
</ol>
<div>This not only follows recommended practices, it also gets the servers at most risk (those exposed to the Internet) patched first.</div>
<div>It’s going to be a challenge for organizations to address this at this particular time of year, with time off scheduled, and change lockout windows in place, but this is one of those times where extraordinary efforts are worth it.</div>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2011/12/microsoft-releases-critical-out-of-band-update/">Microsoft Releases Critical, Out Of Band Update</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2011/12/microsoft-releases-critical-out-of-band-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Certificate Problems with Hybrid Configuration in SP2</title>
		<link>http://www.theemailadmin.com/2011/12/certificate-problems-with-hybrid-configuration-in-sp2/</link>
		<comments>http://www.theemailadmin.com/2011/12/certificate-problems-with-hybrid-configuration-in-sp2/#comments</comments>
		<pubDate>Tue, 27 Dec 2011 14:00:37 +0000</pubDate>
		<dc:creator>Casper Manes</dc:creator>
				<category><![CDATA[Exchange server]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Microsoft Outlook]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5135</guid>
		<description><![CDATA[Users interested in deploying a hybrid configuration have been looking forward to Exchange 2010 SP2 for months so they could take advantage of the new hybrid configuration wizard included with SP2. That wizard takes dozens of manual steps and automates them in a simple to follow wizard, which we discussed in this article a few [...]<p><a href="http://www.theemailadmin.com/2011/12/certificate-problems-with-hybrid-configuration-in-sp2/">Certificate Problems with Hybrid Configuration in SP2</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2011%2F12%2Fcertificate-problems-with-hybrid-configuration-in-sp2%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2011_2F12_2Fcertificate-problems-with-hybrid-configuration-in-sp2_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2011%2F12%2Fcertificate-problems-with-hybrid-configuration-in-sp2%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.theemailadmin.com/wp-content/uploads/2011/12/wildcard.jpg"><img class="alignright size-full wp-image-5136" style="border-width: 0px; border-color: black; border-style: solid; margin: 10px;" src="http://www.theemailadmin.com/wp-content/uploads/2011/12/wildcard.jpg" alt="" width="177" height="284" /></a>Users interested in deploying a hybrid configuration have been looking forward to Exchange 2010 SP2 for months so they could take advantage of the new hybrid configuration wizard included with SP2. That wizard takes dozens of manual steps and automates them in a simple to follow wizard, which we discussed <a href="http://www.theemailadmin.com/2011/12/first-look-at-the-sp2-hybrid-configuration-wizards/">in this article</a> a few weeks ago.</p>
<p>While the hybrid configuration wizard is a great improvement in setting up an Exchange system with some mailboxes on premise, and others with a cloud service provider, it seems a small glitch made it through to the release of SP2. It seems that many customers are running into issues using PKI certificates that were previously issued and which worked without a problem in Exchange 2010 RTM and/or SP1.</p>
<p><span id="more-5135"></span>There is a TechNet article called <a target="_blank" href="http://technet.microsoft.com/en-us/library/hh563848.aspx" onclick="pageTracker._trackPageview('/outgoing/technet.microsoft.com/en-us/library/hh563848.aspx?referer=');">Understanding Certificate Requirements for Hybrid Deployments</a> that details what you should do when creating a certificate for hybrid deployments. The article (as of the date this post was written) only indicates SP1, but includes the steps I followed when creating a certificate for hybrid configuration. The article discusses the use of a SAN certificate, but does not discuss using a wildcard certificate, and here’s why this is a good thing. When you run the wizard to set up hybrid configuration, the wizard parses the CN of your certificate and attempts to set up a Send Connector for the SMTP encryption between your on-premise and your remote Exchange infrastructure. If it encounters a value like *.example.com in the CN, the wizard will error out because that is an invalid name for a Send Connector. Here’s what the error looks like:</p>
<pre>Update-HybridConfiguration</pre>
<pre>Failed</pre>
<pre>Error:</pre>
<pre>Updating hybrid configuration failed with error
'Subtask Configure execution failed: Configure Mail Flow
Execution of the New-SendConnector cmdlet had thrown an exception.
This may indicate invalid parameters in your Hybrid Configuration settings.
Cannot process argument transformation on parameter 'Fqdn'.
Cannot convert value "*.example.com" to type "Microsoft.Exchange.Data.Fqdn".
Error: ""*.example.com" isn't a valid SMTP domain."
at System.Management.Automation.PowerShell.CoreInvoke[TOutput]
(IEnumerable input, PSDataCollection`1 output, PSInvocationSettings settings)
at System.Management.Automation.PowerShell.Invoke(IEnumerable input,
PSInvocationSettings settings) at System.Management.Automation.PowerShell.Invoke()
at Microsoft.Exchange.Management.Hybrid.RemotePowershellSession.RunCommand
(String cmdlet, Dictionary`2 parameters, Boolean ignoreNotFoundErrors)'.
Additional troubleshooting information is available in the Update-HybridConfiguration
log file located at C:\Program Files\Microsoft\Exchange
Server\V14\Logging\Update-HybridConfiguration\HybridConfiguration_12_16_2011_5_58_59_634596119396658235.log.
Exchange Management Shell command attempted:
Update-HybridConfiguration -OnPremisesCredentials
'System.Management.Automation.PSCredential' -TenantCredentials 'System.Management.Automation.PSCredential'</pre>
<p>So, what can you do to move past this? Two choices are available. The first is to not use a wildcard certificate. I know, I know, wildcard certs are awesome, solve a ton of other headaches, and security concerns notwithstanding, are a dream come true. However, since the * in the wildcard cert is what causes the wizard to hurl, stick with a SAN certificate if you need a cert that can validate more than one name. The second is to get the fix from Microsoft. If you already have a wildcard certificate, this is the more economical way to go. You can wait for RU1 that is due to release in January 2012, or you can <a target="_blank" href="http://support.microsoft.com/common/international.aspx?RDPATH=dm;en-us;select&amp;target=assistance" onclick="pageTracker._trackPageview('/outgoing/support.microsoft.com/common/international.aspx?RDPATH=dm_en-us_select_amp_target=assistance&amp;referer=');">contact Microsoft</a> for a hotfix.</p>
<p>Even with this little “issue” SP2 is a great improvement over SP1, and if you are planning a hybrid deployment, it is still the way to go. A regular, SAN, or UC certificate is far less expensive than a wildcard, so this may not be an issue for you anyway, but if you already have a wildcard cert, your fix is a free phone call away.</p>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2011/12/certificate-problems-with-hybrid-configuration-in-sp2/">Certificate Problems with Hybrid Configuration in SP2</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2011/12/certificate-problems-with-hybrid-configuration-in-sp2/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Exchange 2010 SP2 offers Cross-Site Silent Redirection</title>
		<link>http://www.theemailadmin.com/2011/12/exchange-2010-sp2-offers-cross-site-silent-redirection/</link>
		<comments>http://www.theemailadmin.com/2011/12/exchange-2010-sp2-offers-cross-site-silent-redirection/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 16:00:43 +0000</pubDate>
		<dc:creator>Casper Manes</dc:creator>
				<category><![CDATA[Exchange server]]></category>
		<category><![CDATA[Exchange 2010]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5115</guid>
		<description><![CDATA[Exchange 2010 SP2 provides many updates and fixes to Exchange 2010, but only a limited set of new features. One of these, Cross-Site Silent Redirection, may go unnoticed by smaller organizations, but should be a huge improvement in the end user experience for larger, multi-site companies that use OWA. Cross-Site Silent Redirection is the name [...]<p><a href="http://www.theemailadmin.com/2011/12/exchange-2010-sp2-offers-cross-site-silent-redirection/">Exchange 2010 SP2 offers Cross-Site Silent Redirection</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2011%2F12%2Fexchange-2010-sp2-offers-cross-site-silent-redirection%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2011_2F12_2Fexchange-2010-sp2-offers-cross-site-silent-redirection_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2011%2F12%2Fexchange-2010-sp2-offers-cross-site-silent-redirection%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.theemailadmin.com/wp-content/uploads/2011/12/302.jpg"><img class="alignright size-full wp-image-5116" style="border-width: 0px; border-color: black; border-style: solid; margin: 10px;" src="http://www.theemailadmin.com/wp-content/uploads/2011/12/302.jpg" alt="" width="176" height="141" /></a>Exchange 2010 SP2 provides many updates and fixes to Exchange 2010, but only a limited set of new features. One of these, Cross-Site Silent Redirection, may go unnoticed by smaller organizations, but should be a huge improvement in the end user experience for larger, multi-site companies that use OWA. Cross-Site Silent Redirection is the name given to the new SP2 feature that enables CAS servers to redirect clients to a more optimally located server offering OWA services.</p>
<p><span id="more-5115"></span>Prior to Cross-Site Silent Redirection, when a user tries to access the general OWA URL, but their mailbox is hosted in another location, the experience goes something like this:</p>
<ol>
<li>User enters the OWA URL in their browser.</li>
<li>User is prompted for and enters their credentials.</li>
<li>CAS server performs service discovery, determines that it must redirect user to a different site.</li>
<li>CAS server provides page to user with link to proper OWA URL.</li>
<li>User clicks link.</li>
<li>User is prompted for and enters their credentials, <strong>again.</strong></li>
</ol>
<p>Not exactly the best user experience, is it? Recognizing this, the Exchange team added Cross-Site Silent Redirection with SP2. A new parameter enables the CAS server to silently redirect the client’s browser to the correct CAS server URL using a 302, which causes the browser to go to the correct CAS server URL without the user having to authenticate twice, or click on another link in a webpage.</p>
<p>Configure your OWA using the <em>Set-OWAVirtualDirectory</em> command with the new <em>–CrossSiteRedirect</em> switch, like this.</p>
<pre>Set-OWAVirtualDirectory -Identity "Contoso\owa (Default Web site)" -CrossSiteRedirectType Silent</pre>
<p>Cross-site silent redirection can leverage FBA with your TMG. If both listeners are set up for FBA and SSO. Internally, you can also get this as long as the OWA virtual directories are set up to use integrated authentication, and the URLs are in the Local Intranet zone.</p>
<p>There are some circumstances where silent redirection won’t work; these include:</p>
<ol>
<li>You use Basic Authentication on the OWA virtual directories.</li>
<li>You have different authentication settings on the original and targeted OWA virtual directories.</li>
<li>You are using two factor authentication (2FA).</li>
<li>You are publishing the CAS servers through TMG and use a different listener for each.</li>
</ol>
<p>With silent-redirection, your users can leverage a single URL for OWA, and be redirected to the best CAS server without any additional effort on their part. This greatly enhances the user experience and is a great add for large organizations with OWA in multiple sites. Once you have SP2 deployed, plan on testing and deploying this feature in your environment.</p>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2011/12/exchange-2010-sp2-offers-cross-site-silent-redirection/">Exchange 2010 SP2 offers Cross-Site Silent Redirection</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2011/12/exchange-2010-sp2-offers-cross-site-silent-redirection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Troubleshooting Exchange 2010 SP2 Installation</title>
		<link>http://www.theemailadmin.com/2011/12/troubleshooting-exchange-2010-sp2-installation/</link>
		<comments>http://www.theemailadmin.com/2011/12/troubleshooting-exchange-2010-sp2-installation/#comments</comments>
		<pubDate>Thu, 15 Dec 2011 14:00:53 +0000</pubDate>
		<dc:creator>Casper Manes</dc:creator>
				<category><![CDATA[Exchange server]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5071</guid>
		<description><![CDATA[Now that Exchange 2010 SP2 is available for download, I’m sure many of you (like me) have already downloaded the binary and are testing it in the lab. Of course, the reason we test is because we want to ensure that we don’t create problems in production which is prudent and a best practice for [...]<p><a href="http://www.theemailadmin.com/2011/12/troubleshooting-exchange-2010-sp2-installation/">Troubleshooting Exchange 2010 SP2 Installation</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2011%2F12%2Ftroubleshooting-exchange-2010-sp2-installation%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2011_2F12_2Ftroubleshooting-exchange-2010-sp2-installation_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2011%2F12%2Ftroubleshooting-exchange-2010-sp2-installation%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><span class="Apple-style-span" style="font-size: 13px; font-weight: normal;"><a href="http://www.theemailadmin.com/wp-content/uploads/2011/12/Ex2010.jpg"><img class="alignright size-full wp-image-5077" style="border-width: 0px; border-color: black; border-style: solid; margin: 10px;" src="http://www.theemailadmin.com/wp-content/uploads/2011/12/Ex2010.jpg" alt="" width="157" height="149" /></a>Now that </span><a href="http://www.theemailadmin.com/2011/12/christmas-comes-early-exchange-2010-sp2-is-here/">Exchange 2010 SP2 is available for download</a><span class="Apple-style-span" style="font-size: 13px; font-weight: normal;">, I’m sure many of you (like me) have already downloaded the binary and are testing it in the lab. Of course, the reason we test is because we want to ensure that we don’t create problems in production which is prudent and a best practice for administration. SP2 is a great service pack, and in a vanilla Exchange 2010 organization I seriously doubt you will encounter a single issue with this service pack, but how many of us are running a vanilla org, freshly installed from scratch? For the majority of us who aren&#8217;t, here are some pointers about SP2 that should prove useful.</span></p>
<p><span id="more-5071"></span></p>
<h2>Network timeouts and long installation times</h2>
<p>The Exchange 2010 SP2 binary is a slipstreamed copy of Exchange 2010 <strong>with</strong> SP2. You can use it to patch an existing server, or to install a new server from scratch, so keep it handy, but also keep in mind it isn’t exactly small. The download is 535 MB, but when you run it, it will expand to 1.38 GB. Make sure you have room for that wherever you decide to expand it, and consider whether to place it on a network share where all your Exchange servers can access it, or if you should copy the downloaded EXE to Exchange servers in remote offices before you expand it.</p>
<h2>Schema extension errors</h2>
<p>Yes, you must extend the schema for SP2. That means you need Schema Admin rights, or to have your AD administrator extend the schema before you can apply SP2 to any server. If you are not also the AD admin, engage that person now.</p>
<h2>CAS Server update fails</h2>
<p>SP2 requires some additional components for CAS servers that SP1 and RTM did not. Make sure that your CAS server has the following IIS role services installed before applying SP2, or it will fail. If you are running Windows 2008 SP2 use Server Manager to install:</p>
<ul>
<li>IIS 6 WMI Compatibility</li>
<li>ASP.NET</li>
<li>ISAPI Filters</li>
<li>Client Certificate Mapping Authentication</li>
<li>Directory Browsing</li>
<li>HTTP Errors</li>
<li>HTTP Logging</li>
<li>HTTP Redirection</li>
<li>Tracing</li>
<li>Request Monitor</li>
<li>Static Content</li>
</ul>
<p>If you are running Windows 2008 R2 you can use PowerShell to install the required modules by running:</p>
<pre>Import-Module ServerManager [enter]</pre>
<pre>Add-WindowsFeature Web-WMI,Web-Asp-Net,Web-ISAPI-Filter,Web-Client-Auth,Web-Dir-Browsing,
Web-Http-Errors,Web-Http-Logging,Web-Http-Redirect,Web-Http-Tracing,Web-Request-Monitor,
Web-Static-Content [enter]</pre>
<p>If that’t too much effort, you can install SP2 in unattended mode like this in a normal administrative command prompt.</p>
<pre>Setup /Mode:Upgrade /InstallWindowsComponents [enter]</pre>
<p>&nbsp;</p>
<h2>Errors managing RBAC</h2>
<p>SP2 changes some of the Role Based Access Control definitions in Active Directory. If you try to manage any RBAC roles from a server that has not yet been updated, you will encounter errors in both the Exchange Management Shell, and the Exchange Control Panel.</p>
<p>In the shell you will see:<br />
WARNING: The object MyMailboxDelegation has been corrupted, and it&#8217;s in an inconsistent state. The following validation errors happened:<br />
WARNING: The property value you specified, &#8220;15&#8243;, isn&#8217;t defined in the Enum type &#8220;ScopeType&#8221;.</p>
<p>In the control panel you will see:<br />
There are multiple warnings. Click here to see more<br />
The object MyMailboxDelegation has been corrupted, and it&#8217;s in an inconsistent state. The following validation errors happened:<br />
The property value you specified, &#8220;15&#8243;, isn&#8217;t defined in the Enum type &#8220;ScopeType&#8221;.</p>
<p>Upgrade all Exchange servers to SP2, or use a server that has already been upgraded to manage RBAC until you can finish patching the other servers.</p>
<h2>Redirs for OWA fail</h2>
<p>If you are using a simple URL and not requiring HTTPS (like <a target="_blank" href="http://mail.example.com/" onclick="pageTracker._trackPageview('/outgoing/mail.example.com/?referer=');">http://mail.example.com</a>) to redirect your users to their OWA, this will fail after updating to SP2. To avoid this, as soon as SP2 has been applied to the CAS server, modify your web.config file using the steps found in <a target="_blank" href="http://technet.microsoft.com/en-us/library/aa998359.aspx" onclick="pageTracker._trackPageview('/outgoing/technet.microsoft.com/en-us/library/aa998359.aspx?referer=');">http://technet.microsoft.com/en-us/library/aa998359.aspx</a>.</p>
<h2>Cross-forest mailbox moves fail</h2>
<p>If you have a multi-forest Exchange org, or are migrating to Office 365, this is a big one. The way MRSProxy works has changed with SP2, so the service is disabled by SP2 and settings in the EWS\web.config file are no longer used. Use the EMS command to reenable the MRSProxy.</p>
<pre>Set-WebServicesVirtualDirectory -Identity "EWS (Default Web Site)" -MRSProxyEnabled $true [enter]</pre>
<h2>Hybrid Configuration Wizard fails</h2>
<p>There’s a known issue setting up hybrid configuration using the wizard if the FQDN of your Hub Transport server starts with a number. You can either use a different HT server, rename your HT server, or use the EMS <strong>Update-HybridConfiguration</strong> cmdlet to set up hybrid coexistence instead of using the wizard.</p>
<p>Knowing these ahead of time can help to ensure your testing, and production deployment, of SP2 goes off without a hitch. Good hunting!</p>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2011/12/troubleshooting-exchange-2010-sp2-installation/">Troubleshooting Exchange 2010 SP2 Installation</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2011/12/troubleshooting-exchange-2010-sp2-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First Look At The SP2 Hybrid Configuration Wizards</title>
		<link>http://www.theemailadmin.com/2011/12/first-look-at-the-sp2-hybrid-configuration-wizards/</link>
		<comments>http://www.theemailadmin.com/2011/12/first-look-at-the-sp2-hybrid-configuration-wizards/#comments</comments>
		<pubDate>Mon, 12 Dec 2011 14:00:54 +0000</pubDate>
		<dc:creator>Casper Manes</dc:creator>
				<category><![CDATA[email management]]></category>
		<category><![CDATA[Exchange server]]></category>
		<category><![CDATA[Exchange 2010]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5069</guid>
		<description><![CDATA[You might have heard by now that Exchange 2010 SP2 has been released, and if you are looking to migrate some or all of your on-premise email to hosted email from Microsoft’s Office 365, two of the best things about SP2 are the New Hybrid Configuration Wizard and the Manage Hybrid Configuration Wizard. The New [...]<p><a href="http://www.theemailadmin.com/2011/12/first-look-at-the-sp2-hybrid-configuration-wizards/">First Look At The SP2 Hybrid Configuration Wizards</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2011%2F12%2Ffirst-look-at-the-sp2-hybrid-configuration-wizards%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2011_2F12_2Ffirst-look-at-the-sp2-hybrid-configuration-wizards_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2011%2F12%2Ffirst-look-at-the-sp2-hybrid-configuration-wizards%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.theemailadmin.com/wp-content/uploads/2011/12/wizard.jpg"><img class="alignright size-full wp-image-5083" style="border-width: 0px; border-color: black; border-style: solid; margin: 10px;" src="http://www.theemailadmin.com/wp-content/uploads/2011/12/wizard.jpg" alt="" width="159" height="159" /></a>You might have heard by now that <a href="http://www.theemailadmin.com/2011/12/christmas-comes-early-exchange-2010-sp2-is-here/">Exchange 2010 SP2 has been released</a>, and if you are looking to migrate some or all of your on-premise email to hosted email from Microsoft’s Office 365, two of the best things about SP2 are the New Hybrid Configuration Wizard and the Manage Hybrid Configuration Wizard.</p>
<p>The New Hybrid Configuration Wizard is designed to make establishing a hybrid coexistence relationship between your on premise Exchange organization and another Exchange organization as easy as possible. Scenarios where you would need to establish a hybrid deployment can include Office 365 or another cloud provider, where you will have some mailboxes on premise and others in the cloud either in the short term during migrations, or permanently when you want to keep some mailboxes on premise and move others to the cloud. Hybrid deployments let you:<span id="more-5069"></span></p>
<ul>
<li>Share an SMTP namespace</li>
<li>Share a unified GAL</li>
<li>Share free/busy</li>
<li>Centralize mailflow</li>
<li>Use a single OWA URL</li>
<li>Securely route mail between on premise and cloud mailboxes</li>
<li>Move mailboxes between on premise and cloud with automatic Outlook configuration,</li>
<li>and more.</li>
</ul>
<p>Whether you want to move all of your email services to the cloud, or just a subset, one thing you should understand up front is that this will not be a point and click operation. Email is complicated, and email coexistence can be even more so, but SP2’s new Hybrid Configuration Wizard takes the approximately 50 manual steps required to set up hybrid configuration, and boils them down to a simple and wizard driven process.</p>
<p>The Hybrid Configuration Wizard has three main pieces:</p>
<ol>
<li>A new wizard in the Exchange Management Console that provides step by step guidance through the entire hybrid deployment process.</li>
<li>New Exchange Management Shell cmdlets which are executed in the background by the wizard, but also available to you for administration and scripting.</li>
<li>Better and simplified management of many of the hybrid features.</li>
</ol>
<p>When you run the wizard to establish a hybrid configuration, the wizard will handle many of the testing and verification steps that used to be manual processes, including:</p>
<ol>
<li>Verified all prerequisites for hybrid deployment.</li>
<li>Creates the federation trust between your on premise environment and Office 365.</li>
<li>Creates the mutual organization relationships between your on premise Exchange and Office 365.</li>
<li>Makes the necessary email address policy modifications needed for moving mailboxes from an on premise server to Office 365.</li>
<li>Takes care of both mailtips and free/busy calendar sharing, as well as message tracking for easy interaction between on premise and cloud users.</li>
<li>Sets up the secure mail flow (TLS) between your on premise and Office 365, and configures mail routing to meet your requirements in case you have on premise DLP or other services.</li>
<li>Enables online archiving for on premise mailboxes if you have subscribed to that feature.</li>
</ol>
<p>The Exchange 2010 SP2 Manage Hybrid Configuration Wizard enables you to manage this hybrid deployment easily, making your Exchange organization seem like a single management entity, even though some of your mailboxes are in the on premise infrastructure, and others are in the cloud at Office 365 datacenters. With a hybrid deployment, users won’t notice (or care) whether another user within the company has their mailbox on premise or in the cloud; they all look like they are a part of a unified Exchange organization. Mailbox moves between on premise and cloud are easy and can be done with minimum interruption to the user. If they are using Outlook 2010, they can even stay connected to their mailbox until the last few moments of a move, and will only need to close and restart Outlook to connect to their mailbox; no client reconfiguration, no download of a new OST.</p>
<p>If you are considering Office 365 as a part of your email service offering, be sure to look at the benefits of the SP2 Hybrid wizards. Managing email won’t become an end user task, but these wizards will sure make our lives easier!</p>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2011/12/first-look-at-the-sp2-hybrid-configuration-wizards/">First Look At The SP2 Hybrid Configuration Wizards</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2011/12/first-look-at-the-sp2-hybrid-configuration-wizards/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Christmas Comes Early &#8211; Exchange 2010 SP2 is here!</title>
		<link>http://www.theemailadmin.com/2011/12/christmas-comes-early-exchange-2010-sp2-is-here/</link>
		<comments>http://www.theemailadmin.com/2011/12/christmas-comes-early-exchange-2010-sp2-is-here/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 14:00:30 +0000</pubDate>
		<dc:creator>Casper Manes</dc:creator>
				<category><![CDATA[Exchange server]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5047</guid>
		<description><![CDATA[With 26 days left in calendar year 2011, the Exchange team at Microsoft stayed true to their word, and have delivered an early Christmas present to email admins all over the world. Exchange 2010 Service Pack 2 has arrived! We’ve covered some of the things you could expect with the latest service pack to Exchange [...]<p><a href="http://www.theemailadmin.com/2011/12/christmas-comes-early-exchange-2010-sp2-is-here/">Christmas Comes Early &#8211; Exchange 2010 SP2 is here!</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2011%2F12%2Fchristmas-comes-early-exchange-2010-sp2-is-here%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2011_2F12_2Fchristmas-comes-early-exchange-2010-sp2-is-here_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2011%2F12%2Fchristmas-comes-early-exchange-2010-sp2-is-here%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.theemailadmin.com/wp-content/uploads/2011/12/santa-mail.jpg"><img class="alignright size-full wp-image-5050" style="border-width: 0px; border-color: black; border-style: solid; margin: 10px;" src="http://www.theemailadmin.com/wp-content/uploads/2011/12/santa-mail.jpg" alt="" width="177" height="147" /></a>With 26 days left in calendar year 2011, the Exchange team at Microsoft stayed true to their word, and have delivered an early Christmas present to email admins all over the world. Exchange 2010 Service Pack 2 has arrived! We’ve covered some of the things you could expect with the latest service pack to Exchange 2010, both <a href="http://www.theemailadmin.com/2011/10/get-ready-for-exchange-2010-sp2/">here</a> and <a href="http://www.theemailadmin.com/2011/12/a-deeper-look-into-exchange-2010-sp2/">here</a>, and offered advice on getting ready for testing the service pack in your environment, and extending the schema as required for this service pack.</p>
<p>Service Pack 2 includes all the update from the release of Exchange 2010 RTM through <a target="_blank" href="http://www.theemailadmin.com/2011/11/all-about-update-rollup-6-for-exchange-server-2010-service-pack-1/">Rollup 6</a>, so some of you may be asking yourselves if you really need to rush right out and apply SP2. As with any patch or update, <strong>testing is required</strong>, so a measured and careful pacing is far better than a rush, but there’s a lot of great stuff inside SP2 that should appeal to you. Here’s the list from the TechNet article <a href="http://technet.microsoft.com/en-us/library/hh529924.aspx" onclick="pageTracker._trackPageview('/outgoing/technet.microsoft.com/en-us/library/hh529924.aspx?referer=');">What’s New in Exchange 2010 SP2</a>.<span id="more-5047"></span></p>
<p><span class="Apple-style-span" style="font-size: 20px; font-weight: bold;">Hybrid Configuration Wizard</span></p>
<p>Exchange 2010 SP2 introduces the Hybrid Configuration Wizard which provides you with a streamlined process to configure a hybrid deployment between on-premises and Office 365 Exchange organizations. Hybrid deployments provide the seamless look and feel of a single Exchange organization and offer administrators the ability to extend the feature-rich experience and administrative control of an on-premises organization to the cloud. For more information, see <a target="_blank" href="http://technet.microsoft.com/en-us/library/hh529921.aspx" onclick="pageTracker._trackPageview('/outgoing/technet.microsoft.com/en-us/library/hh529921.aspx?referer=');">Understanding the Hybrid Configuration Wizard</a>.</p>
<h2>Address Book Policies</h2>
<p>Exchange 2010 SP2 introduces the address book policy object which can be assigned to a mailbox user. The ABP determines the global address list (GAL), offline address book (OAB), room list, and address lists that are visible to the mailbox user that is assigned the policy. Address book policies provide a simpler mechanism to accomplish GAL separation for the on-premises organization that needs to run disparate GALs. For more information, see <a target="_blank" href="http://technet.microsoft.com/en-us/library/hh529948.aspx" onclick="pageTracker._trackPageview('/outgoing/technet.microsoft.com/en-us/library/hh529948.aspx?referer=');">Understanding Address Book Policies</a>.</p>
<h2>Cross-Site Silent Redirection for Outlook Web App</h2>
<p>With Exchange 2010 SP2, you can enable a silent redirection when a Client Access server receives a client request that is better serviced by a Client Access server located in another Active Directory site. This silent redirection can also provide a single sign-on experience when forms-based authentication is enabled on each Client Access server. For more information, see <a target="_blank" href="http://technet.microsoft.com/en-us/library/bb310763.aspx" onclick="pageTracker._trackPageview('/outgoing/technet.microsoft.com/en-us/library/bb310763.aspx?referer=');">Understanding Proxying and Redirection</a>.</p>
<h2>Mini Version of Outlook Web App</h2>
<p>The mini version of Outlook Web App is a lightweight browser-based client, similar to the Outlook Mobile Access client in Exchange 2003. It’s designed to be used on a mobile operating system. The mini version of Outlook Web App provides users with the following basic functionality:</p>
<ul>
<li>Access to e-mail, calendar, contacts, tasks and the global address list.</li>
<li>Access to e-mail subfolders.</li>
<li>Compose, reply to, and forward e-mail messages.</li>
<li>Create and edit calendar, contact, and task items.</li>
<li>Handle meeting requests.</li>
<li>Set the time zone and automatic reply messages.</li>
</ul>
<p>For more information, see <a target="_blank" href="http://technet.microsoft.com/en-us/library/hh529922.aspx" onclick="pageTracker._trackPageview('/outgoing/technet.microsoft.com/en-us/library/hh529922.aspx?referer=');">Understanding the Mini Version of Outlook Web App</a>.</p>
<h2>Mailbox Replication Service</h2>
<p>In Exchange 2010 SP1, if you wanted to move mailboxes from on-premises to Outlook.com or to another forest, you had to enable MRSProxy on the remote Client Access server. To do this, you had to manually configure the web.config file on every Client Access server. In Exchange 2010 SP2, two parameters have been added to the New-WebServicesVirtualDirectory and Set-WebServicesVirtualDirectory cmdlets so that you don&#8217;t have to perform the manual configuration: MRSProxyEnabled and MaxMRSProxyConnections. For more information, see <a target="_blank" href="http://technet.microsoft.com/en-us/library/ee732395.aspx" onclick="pageTracker._trackPageview('/outgoing/technet.microsoft.com/en-us/library/ee732395.aspx?referer=');">Start the MRSProxy Service on a Remote Client Access Server</a>.</p>
<h2>Mailbox Auto-Mapping</h2>
<p>In Exchange 2010 SP1, Office Outlook 2007 and Outlook 2010 clients can automatically map to any mailbox to which a user has Full Access permissions. If a user is granted Full Access permissions to another user&#8217;s mailbox or to a shared mailbox, Outlook, through Autodiscover, automatically loads all mailboxes to which the user has full access. However, if the user has full access to a large number of mailboxes, performance issues may occur when starting Outlook. Therefore, in Exchange 2010 SP2, administrators can turn off the auto-mapping feature by setting the value of the new Automapping parameter to false on the Add-MailboxPermission cmdlets. For more information, see <a target="_blank" href="http://technet.microsoft.com/en-us/library/hh529943.aspx" onclick="pageTracker._trackPageview('/outgoing/technet.microsoft.com/en-us/library/hh529943.aspx?referer=');">Disable Outlook Auto-Mapping with Full Access Mailboxes</a>.</p>
<h2>Multi-Valued Custom Attributes</h2>
<p>Exchange 2010 SP2 introduces five new multi-value custom attributes that you can use to store additional information for mail recipient objects. The ExtensionCustomAttribute1 to ExtensionCustomAttribute5 parameters can each hold up to 1,300 values. You can specify multiple values as a comma-delimited list. The following cmdlets support these new parameters:</p>
<ul>
<li>Set-DistributionGroup</li>
<li>Set-DynamicDistributionGroup</li>
<li>Set-Mailbox</li>
<li>Set-MailContact</li>
<li>Set-MailPublicFolder</li>
<li>Set-RemoteMailbox</li>
</ul>
<h2>Litigation Hold</h2>
<p>In Exchange 2010 SP2, you can’t disable or remove a mailbox that has been placed on litigation hold. To bypass this restriction, you must either remove litigation hold from the mailbox, or use the new IgnoreLegalHold switch parameter when removing or disabling the mailbox. The IgnoreLegalHold parameter has been added to the following cmdlets:</p>
<ul>
<li>Disable-Mailbox</li>
<li>Remove-Mailbox</li>
<li>Disable-RemoteMailbox</li>
<li>Remove-RemoteMailbox</li>
<li>Disable-MailUser</li>
<li>Remove-MailUser</li>
</ul>
<p>You can download SP2 from this link <a target="_blank" href="http://www.microsoft.com/download/en/details.aspx?id=28190" onclick="pageTracker._trackPageview('/outgoing/www.microsoft.com/download/en/details.aspx?id=28190&amp;referer=');">http://www.microsoft.com/download/en/details.aspx?id=28190</a>. At 535 MB, it isn’t the smallest update you have ever had to download. It comes down as an EXE, so saving it to a common location that all of your Exchange servers can access will keep you from having to do multiple downloads. Remember, both during testing, and when it comes time for production deployment, patching should follow this order for servers:</p>
<ol>
<li>Client Access Servers (all servers in a CAS array consecutively)</li>
<li>Hub Transport Servers</li>
<li>Unified Messaging Servers</li>
<li>Mailbox Servers</li>
<li>Edge Transport Servers (which can actually be done whenever, but it makes sense to leave them to last just for consistency).</li>
</ol>
<p>I’m not saying Steve Balmer is a jolly old elf, but Santa’s helpers on the Exchange team worked very hard on SP2, and it’s the best early Christmas present I’ve gotten this year. Now, off to submit that change request!</p>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2011/12/christmas-comes-early-exchange-2010-sp2-is-here/">Christmas Comes Early &#8211; Exchange 2010 SP2 is here!</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2011/12/christmas-comes-early-exchange-2010-sp2-is-here/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A Deeper Look into Exchange 2010 SP2</title>
		<link>http://www.theemailadmin.com/2011/12/a-deeper-look-into-exchange-2010-sp2/</link>
		<comments>http://www.theemailadmin.com/2011/12/a-deeper-look-into-exchange-2010-sp2/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 17:04:02 +0000</pubDate>
		<dc:creator>Casper Manes</dc:creator>
				<category><![CDATA[Exchange server]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5016</guid>
		<description><![CDATA[With the imminent release of Exchange 2010’s Service Pack 2, I thought it would be nice to share some of the more interesting details that may be in store. I was digging around the Microsoft site looking for some documentation on what changes are actually made to the Active Directory schema when you extend it, [...]<p><a href="http://www.theemailadmin.com/2011/12/a-deeper-look-into-exchange-2010-sp2/">A Deeper Look into Exchange 2010 SP2</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2011%2F12%2Fa-deeper-look-into-exchange-2010-sp2%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2011_2F12_2Fa-deeper-look-into-exchange-2010-sp2_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2011%2F12%2Fa-deeper-look-into-exchange-2010-sp2%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><span style="font-size: small;"><span style="font-family: Calibri;"><a href="http://www.theemailadmin.com/wp-content/uploads/2011/11/Ex2010.png"><img class="alignright size-full wp-image-5017" style="border-width: 0px; border-color: black; border-style: solid; margin: 10px;" src="http://www.theemailadmin.com/wp-content/uploads/2011/11/Ex2010.png" alt="" width="224" height="213" /></a>With the imminent release of Exchange 2010’s Service Pack 2, I thought it would be nice to share some of the more interesting details that may be in store. I was digging around the Microsoft site looking for some documentation on what changes are actually made to the Active Directory schema when you extend it, as some fellow engineers had (unfounded) concerns about extending the schema. In my quest for documentation, I came across some very interesting documentation made available by Microsoft.</span></span></p>
<p><span style="font-family: Calibri; font-size: small;">The Exchange Server Active Directory Schema Changes Reference is a Microsoft Word document that defines every change made to the Active Directory schema since Exchange 2003. This one hundred and seventy-one page tome goes into specific detail, and will no doubt prove to be immensely useful to developers and AD archaeologists in the future. The reason I am sharing it with you now is because it details even those changes that SP2 will make to the schema (yes, that’s correct, you will need to extend the schema to apply SP2, as mentioned </span><a href="http://www.theemailadmin.com/2011/10/get-ready-for-exchange-2010-sp2/"><span style="color: #0000ff; font-family: Calibri; font-size: small;">in this article</span></a><span style="font-family: Calibri;"><span style="font-size: small;">).</span></span></p>
<p><span style="font-size: small;"><span style="font-family: Calibri;"><span id="more-5016"></span>SP2’s schema extensions will modify several of the common classes we’re used to dealing with, including Mail-Recipient and ms-Exch-Mail-Storage, and our favourite ms-Exch-CustomAttributes, but where it gets interesting is in what classes and attributes are being added. A quick scan of these supports some of the new features we know are coming in SP2, including Address Book Policies, but take a look at the full list.</span></span></p>
<p><em><span style="font-size: small;"><span style="font-family: Calibri;">Classes Added By Exchange 2010 SP2</span></span></em></p>
<p><span style="font-size: small;"><span style="font-family: Calibri;">The following classes are added when you install Exchange 2010 SP2:</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Address-Book-Mailbox-Policy</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Coexistence-Relationship</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-ActiveSync-Device-Autoblock-Threshold</span></span></p>
<p><span style="font-family: Calibri; font-size: small;"> </span></p>
<p><em><span style="font-size: small;"><span style="font-family: Calibri;">Attributes Added by Exchange 2010 SP2</span></span></em></p>
<p><span style="font-size: small;"><span style="font-family: Calibri;">The following attributes are added when you install Exchange 2010 SP2:</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Content-Byte-Encoder-Type-For-7-Bit-Charsets</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Content-Preferred-Internet-Code-Page-For-Shift-Jis</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Content-Required-Char-Set-Coverage</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Address-Book-Policy-Link</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Address-Book-Policy-BL</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Address-Lists-Link</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Address-Lists-BL</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Global-Address-List-Link</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Global-Address-List-BL</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Offline-Address-Book-Link</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Offline-Address-Book-BL</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-All-Room-List-Link</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-All-Room-List-BL</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Coexistence-Domains</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Coexistence-External-IP-Addresses</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Coexistence-Feature-Flags</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Coexistence-Servers</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Extension-Attribute-16</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Extension-Attribute-17</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Extension-Attribute-18</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Extension-Attribute-19</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Extension-Attribute-20</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Extension-Attribute-21</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Extension-Attribute-22</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Extension-Attribute-23</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Extension-Attribute-24</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Extension-Attribute-25</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Extension-Attribute-26</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Extension-Attribute-27</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Extension-Attribute-28</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Extension-Attribute-29</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Extension-Attribute-30</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Extension-Attribute-31</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Extension-Attribute-32</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Extension-Attribute-33</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Extension-Attribute-34</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Extension-Attribute-35</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Extension-Attribute-36</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Extension-Attribute-37</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Extension-Attribute-38</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Extension-Attribute-39</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Extension-Attribute-41</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Extension-Attribute-40</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Extension-Attribute-42</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Extension-Attribute-43</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Extension-Attribute-44</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Extension-Attribute-45</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Coexistence-On-Premises-Smart-Host</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Coexistence-Secure-Mail-Certificate-Thumbprint</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-Coexistence-Transport-Servers</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-extension-custom-attribute-1</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-extension-custom-attribute-2</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-extension-custom-attribute-3</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-extension-custom-attribute-4</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-extension-custom-attribute-5</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-ActiveSync-Device-AutoBlock-Duration</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-ActiveSync-Device-Autoblock-Threshold-Incidence-Duration</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-ActiveSync-Device-Autoblock-Threshold-Incidence-Limit</span></span></p>
<p><span style="font-family: Calibri;"><span style="font-size: small;">•             ms-Exch-ActiveSync-Device-Autoblock-Threshold-Type</span></span></p>
<p><span style="font-family: Calibri; font-size: small;"> </span></p>
<p><span style="font-size: small;"><span style="font-family: Calibri;">Notice all those new Extension Attributes? If you have ever worked in a company that wanted to store more data in ms-Exch-Extension attributes instead of deploying their own schema extensions, you have probably run into a supply and demand situation where there just weren’t enough attributes to go around. Well SP2 adds another thirty, tripling the available extension attributes. For a couple of my customers, that’s reason enough to extend the schema with a beta of SP2 even if you don’t plan to actually deploy the service pack until next Spring! All of these new extension attributes will be indexed and replicated to the Global Catalog, making searches across AD for whatever you store in those attributes easier to execute across the forest.</span></span></p>
<p><span style="font-size: small;"><span style="font-family: Calibri;">Close to thirty MAPI ID’s are also being added, which may hint at new capabilities in store for the next version of Outlook. Time will have to tell on that one, but the note at the end holds a clue.</span></span></p>
<blockquote><p><span style="font-size: small;"><span style="font-family: Calibri;">Only attributes with MAPI IDs can be retrieved directly from Active Directory Domain Services (AD DS) by Microsoft Outlook or other MAPI clients.</span></span></p></blockquote>
<p><span style="font-family: Calibri; font-size: small;">You can download the Schema reference from </span><a target="_blank" href="http://www.microsoft.com/download/en/details.aspx?id=5401" onclick="pageTracker._trackPageview('/outgoing/www.microsoft.com/download/en/details.aspx?id=5401&amp;referer=');"><span style="color: #0000ff; font-family: Calibri; font-size: small;">http://www.microsoft.com/download/en/details.aspx?id=5401</span></a><span style="font-family: Calibri;"><span style="font-size: small;"> but be aware; for reasons that defy all logic, Microsoft chose to make this download an MSI file, that “installs” the documentation to your Program Files directory. Yes, that’s right, what at the end is just simple docx must be installed, invoke ConsentUI, build a directory path in your Program Files directory, and then drop a docx. With so much other documentation available from Microsoft in docx or PDF, this makes no sense, so you might want to just crack the MSI open and extract the docx by hand. It’ll be quicker! </span></span></p>
<p><span style="font-size: small;"><span style="font-family: Calibri;">However you choose to get the file, have a look and keep it handy. It’s a good history lesson in the evolution of Exchange, and I’m sure many of you will find a use for all those new extension attributes!</span></span></p>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2011/12/a-deeper-look-into-exchange-2010-sp2/">A Deeper Look into Exchange 2010 SP2</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2011/12/a-deeper-look-into-exchange-2010-sp2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Troubleshooting Outlook Auto-complete</title>
		<link>http://www.theemailadmin.com/2011/11/troubleshooting-outlook-auto-complete/</link>
		<comments>http://www.theemailadmin.com/2011/11/troubleshooting-outlook-auto-complete/#comments</comments>
		<pubDate>Fri, 25 Nov 2011 14:00:25 +0000</pubDate>
		<dc:creator>Casper Manes</dc:creator>
				<category><![CDATA[email management]]></category>
		<category><![CDATA[Exchange server]]></category>
		<category><![CDATA[Microsoft Outlook]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=4966</guid>
		<description><![CDATA[You’ve probably seen this before. A user opens a help desk ticket because every time they try to send an email to someone, it bounces. That someone could be a co-worker using the same email system, or it could be a customer on an external email system &#8211; it doesn’t matter. When the user replies [...]<p><a href="http://www.theemailadmin.com/2011/11/troubleshooting-outlook-auto-complete/">Troubleshooting Outlook Auto-complete</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a target="_blank" href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.theemailadmin.com%2F2011%2F11%2Ftroubleshooting-outlook-auto-complete%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2011_2F11_2Ftroubleshooting-outlook-auto-complete_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2011%2F11%2Ftroubleshooting-outlook-auto-complete%2F&amp;source=emailadm&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.theemailadmin.com/wp-content/uploads/2011/11/11.png"><img class="alignright size-medium wp-image-4989" style="border-width: 0px; border-color: black; border-style: solid; margin: 10px;" src="http://www.theemailadmin.com/wp-content/uploads/2011/11/11-300x83.png" alt="" width="300" height="83" /></a>You’ve probably seen this before. A user opens a help desk ticket because every time they try to send an email to someone, it bounces. That someone could be a co-worker using the same email system, or it could be a customer on an external email system &#8211; it doesn’t matter. When the user <em>replies</em> to an email sent from the other person, the reply is delivered flawlessly. But when the user tries to create a new email, it bounces.</p>
<p>You try to send an email to the remote person and it is delivered correctly. You <a href="http://www.theemailadmin.com/2011/09/how-to-find-that-missing-email-with-exchange-message-tracking/">use message tracking</a> to try to run down the problem with the email, and you might not even find it (if you are searching on the recipient address that is…<em>which is a hint</em>).  It’s not until you have the users actually <em>showing you</em> what they are doing that you realize they have a bad address in their nickname cache.</p>
<p><span id="more-4966"></span>The nickname cache, which provides Outlook’s handy auto-completion when you start to type a name or an email address into the TO: or CC: or BCC: boxes in a new email, is used both to perform automatic name checking and to perform auto-completion. It is also lets you start to type “Cas…” into the TO: box and pulls up casper.manes@example.com so you don’t have to type out the complete email address. The problem comes up when a recipient’s address is wrong, or changes, and your client holds old or bad information.</p>
<p>To fix this, you can remove entries one at a time, or you can purge the cache completely. If you have recently changed your internal addressing standard, or migrated to a new system, I tend to just purge the whole thing so folks have to go to the GAL for fresh information. They will rebuild their cache soon enough, but if it is just a one or two addressee issue, removing individual entrees is easy enough.</p>
<p>To remove a single entry:</p>
<ol>
<li>Start typing the email address, until autocomplete provides choices, like shown below.<br />
<a href="http://www.theemailadmin.com/wp-content/uploads/2011/11/11.png"><img class="aligncenter size-medium wp-image-4989" style="border-width: 0px; border-color: black; border-style: solid; margin: 10px;" src="http://www.theemailadmin.com/wp-content/uploads/2011/11/11-300x83.png" alt="" width="300" height="83" /></a></li>
<li>Click the X to the right of the name to delete it from the cache.</li>
</ol>
<p>To completely remove the cache:</p>
<ol>
<li>Click File, Options</li>
<li>Select the Mail tab</li>
<li>Scroll down to “Send messages” and click the “Empty Auto-Complete List” button.<br />
<a href="http://www.theemailadmin.com/wp-content/uploads/2011/11/2.png"><img class="aligncenter size-medium wp-image-4987" style="border-width: 0px; border-color: black; border-style: solid; margin: 10px;" src="http://www.theemailadmin.com/wp-content/uploads/2011/11/2-300x136.png" alt="" width="300" height="136" /></a></li>
</ol>
<p>Alternatively, you can launch Outlook from the Run dialog using<br />
Outlook.exe /CleanAutoCompleteCache</p>
<p>Protip: using that cmd line in a login script is a convenient way to clear all users’ caches after a migration.</p>
<p>Removing bad entries will force the user to go to the GAL, or use a personal contact, or just type the email address in longhand, which will update the nickname cache with the proper email address, and that means a problem solved.</p>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2011/11/troubleshooting-outlook-auto-complete/">Troubleshooting Outlook Auto-complete</a><br/><br/>

Free ebook download: <a href="http://www.theemailadmin.com/ebook/Top-10-Most-Popular-Troubleshooting-Posts-for-Email-Administrators.pdf">Top 10 Most Popular Troubleshooting Posts for Email Administrators</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.theemailadmin.com/2011/11/troubleshooting-outlook-auto-complete/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 2.666 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-02-10 22:07:46 -->

