<?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 2010</title>
	<atom:link href="http://www.theemailadmin.com/tag/exchange-2010/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>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>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>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>Customize the Exchange Management Shell</title>
		<link>http://www.theemailadmin.com/2012/01/customize-the-exchange-management-shell/</link>
		<comments>http://www.theemailadmin.com/2012/01/customize-the-exchange-management-shell/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 14:00:04 +0000</pubDate>
		<dc:creator>Casper Manes</dc:creator>
				<category><![CDATA[email management]]></category>
		<category><![CDATA[ems]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=5274</guid>
		<description><![CDATA[Customize the Exchange Management Shell as an Exchange administrator, it’s only a matter of time before you embrace the dark side and come to know the true power of shell. The Exchange Management Shell is the direct interface between you and the underlying PowerShell cmdlets that are used to query, configure, and manage Exchange. Getting [...]<p><a href="http://www.theemailadmin.com/2012/01/customize-the-exchange-management-shell/">Customize the Exchange Management Shell</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%2Fcustomize-the-exchange-management-shell%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2012_2F01_2Fcustomize-the-exchange-management-shell_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2012%2F01%2Fcustomize-the-exchange-management-shell%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/ems.jpg"><img class="alignright size-full wp-image-5279" style="border-width: 0px; border-color: black; border-style: solid; margin: 10px;" src="http://www.theemailadmin.com/wp-content/uploads/2012/01/ems.jpg" alt="" width="136" height="122" /></a>Customize the Exchange Management Shell as an Exchange administrator, it’s only a matter of time before you embrace the dark side and come to know the true power of shell. The Exchange Management Shell is the direct interface between you and the underlying PowerShell cmdlets that are used to query, configure, and manage Exchange. Getting comfortable with a command line interface after years of GUI work is a big shift for many admins, but if you start out slow, and work your way through things step by step, you’ll soon find that you are a PowerShell Jedi. Making something your own is the first step towards getting comfortable with it, so in this post, we’ll see how to customize the Exchange Management Shell to make it your own.<span id="more-5274"></span></p>
<p>Again, the Exchange Management Shell (EMS) is simply Exchange’s pathway into PowerShell. If you look at the properties of the EMS shortcut, you will see that it does three things:</p>
<p>C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -noexit -command &#8220;. &#8216;C:\Program Files\Microsoft\Exchange Server\V14\bin\RemoteExchange.ps1&#8242;; Connect-ExchangeServer -auto;&#8221;</p>
<ol>
<li>It launches PowerShell,</li>
<li>It runs a PowerShell script called RemoteExchange.ps1, and finally</li>
<li>Automatically connects to the localhost Exchange server.</li>
</ol>
<p>PowerShell uses profiles to control how it looks and feels. You can also use profiles to configure PowerShell with your own aliases, functions, etc. If you examine the RemoteExchange.ps1 script referenced in the path above, you will find that it configures the size of the EMS window, provides the tips you see at launch, and defines some functions specific to Exchange.</p>
<p>To tailor the appearance of your EMS, you can create/edit your PowerShell profile. You won’t always have a profile to start with. When you open the EMS, type this command:</p>
<pre>Test-Path $profile</pre>
<p>If you have a profile the result will show True. If you don’t, it will show… care to guess? That’s right, False. To start working with your profile, enter this command:</p>
<pre>notepad $profile</pre>
<p>If you didn’t have a profile, you will be prompted to create one. Now that you have a profile, what can you do? I like to have the EMS automatically open in the scratch directory I tend to save working scripts, output files, etc., in and change up the colors a little bit. Here’s an example profile file:</p>
<pre>$Shell = $Host.UI.RawUI
$Shell.WindowTitle="A little knowledge is a dangerous thing"
$Shell.BackgroundColor="Black"
$Shell.ForegroundColor="Green"
Set-Location C:\\scratch</pre>
<p>Let’s see what we’re doing here. First, we create a variable called $Shell, and populate it with the properties of the $Host.UI.RawUI, which stores all the attributes of the UI. Then, we set the value of the WindowTitle attribute (quote enclosed), set the foreground and background color, and then essentially we CD into our c:\scratch directory. Here’s a list of the colors you can use:</p>
<ul>
<li>Black</li>
<li>Blue</li>
<li>Cyan</li>
<li>DarkBlue</li>
<li>DarkCyan</li>
<li>DarkGray</li>
<li>DarkGreen</li>
<li>DarkMagenta</li>
<li>DarkRed</li>
<li>DarkYellow</li>
<li>Gray</li>
<li>Green</li>
<li>Magenta</li>
<li>Red</li>
<li>White</li>
<li>Yellow</li>
</ul>
<p>Save the file, and then launch the EMS. You should see your EMS with the foreground and background colors that you chose, and that your current directory is c:\scratch (or whatever you chose). Notice what you don’t see? Your Window title should display “Machine:FQDN” of your Exchange server. When you use the Connect-Exchange server command, it updates the window title to reflect the server. However, when you launch the regular PowerShell (instead of the EMS) you will see your catch window title at the top.</p>
<p>We’ll look more into PowerShell and the power of the EMS in upcoming posts. If you have a particular customization you like to use, please feel free to share it in a comment below.</p>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2012/01/customize-the-exchange-management-shell/">Customize the Exchange Management Shell</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/customize-the-exchange-management-shell/feed/</wfw:commentRss>
		<slash:comments>0</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>9 Top Practices for Offline Address Books</title>
		<link>http://www.theemailadmin.com/2011/11/9-top-practices-for-offline-address-books/</link>
		<comments>http://www.theemailadmin.com/2011/11/9-top-practices-for-offline-address-books/#comments</comments>
		<pubDate>Tue, 22 Nov 2011 14:00:55 +0000</pubDate>
		<dc:creator>Casper Manes</dc:creator>
				<category><![CDATA[Exchange server]]></category>
		<category><![CDATA[best practices]]></category>
		<category><![CDATA[Exchange 2010]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=4906</guid>
		<description><![CDATA[We’ve spent some time going over the Offline Address Book in Exchange 2010. In our first post on the topic, Inside Exchange -The Offline Address Book, we introduced the OAB and went over creating, storing, distributing, and updating it. Then, in Troubleshooting the Offline Address Book, we looked at how to fix some common issues [...]<p><a href="http://www.theemailadmin.com/2011/11/9-top-practices-for-offline-address-books/">9 Top Practices for Offline Address Books</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%2F9-top-practices-for-offline-address-books%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2011_2F11_2F9-top-practices-for-offline-address-books_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2011%2F11%2F9-top-practices-for-offline-address-books%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/oab.jpg"><img class="alignright size-full wp-image-4971" style="border-width: 0px; border-color: black; border-style: solid; margin: 10px;" src="http://www.theemailadmin.com/wp-content/uploads/2011/11/oab.jpg" alt="" width="259" height="194" /></a>We’ve spent some time going over the Offline Address Book in Exchange 2010. In our first post on the topic, <a href="http://www.theemailadmin.com/2011/11/inside-exchange-the-offline-address-book/">Inside Exchange -The Offline Address Book</a>, we introduced the OAB and went over creating, storing, distributing, and updating it. Then, in <a title="Permanent Link to Troubleshooting the Offline Address Book" href="http://www.theemailadmin.com/2011/11/troubleshooting-the-offline-address-book/">Troubleshooting the Offline Address Book</a>, we looked at how to fix some common issues that come up with the OAB from time to time, including server side issues, client-side issues, and when network problems arise. In this final post on the Offline Address Book, we’re going to go over some best practices for Exchange admins to use with regards to the OAB.<span id="more-4906"></span></p>
<ol>
<li>Make sure the mailbox server that generates the OAB has sufficient disk space. Temp files can take up a lot of space for a short period of time, and while you can move those to a different volume, starting with enough disk space on C: is critical for any server.</li>
<li>Ensure antivirus exceptions are properly configured. Exempt the temp directory, the OAB directory structure, and consider exempting LZX and XML files from real-time scans.</li>
<li>Make sure the CAS server’s IIS directories are also exempt. A mailbox server may create the OAB, but it’s the CAS server that distributes it to clients.</li>
<li>OAB generation is CPU intensive. By default, it runs on the mailbox server each day at 500 local time. Schedule backups and any other processor intensive activities so they do not overlap OAB generation.</li>
<li>Make sure HR and any other groups understand that changes to personal information may take a couple of days to propagate to all users so that you have time for AD replication to complete, and then for the daily OAB updates to run, and finally for users to pull down those updates, otherwise they may expect telephone number changes to happen instantly. Manage users expectations accordingly.</li>
<li>Don’t change permissions on the OAB directory structure on the Mailbox server or IIS directories on the CAS server, no matter what security template the infosec team wants you to run. Just don’t do it &#8211; the security gains are hypothetical at best; the things those templates can break are very real.</li>
<li>Whenever possible, use the latest version of Outlook. Outlook 2010 is much more efficient about downloading the OAB than earlier versions are, and that can make a big difference when you have made a larger volume of changes to the GAL, such as a new SMTP suffix. Outlook 2010 can deal with difference files if no more than 50% of the OAB has changed; earlier versions’ threshold is 12.5%.</li>
<li>Keep a close eye on Active Directory replication, and ensure that the Mailbox server that generates the OAB always has a Global Catalog server in the same site as it is. Users can authenticate across site boundaries and probably won’t notice any issue, but OAB generation can grind to a halt.</li>
<li>OABs are generated on one mailbox server and replicated to servers throughout your Exchange organization. If your first Mailbox server is not optimally placed in your network, move the OAB generation task to a Mailbox server that is more centrally located.</li>
</ol>
<p>Follow these nine best practices for the care and feeding of your Offline Address Book and your servers will thank you.</p>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2011/11/9-top-practices-for-offline-address-books/">9 Top Practices for Offline Address Books</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/9-top-practices-for-offline-address-books/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Migration to Exchange 2010 Becoming a Stampede</title>
		<link>http://www.theemailadmin.com/2011/11/migration-to-exchange-2010-becoming-a-stampede/</link>
		<comments>http://www.theemailadmin.com/2011/11/migration-to-exchange-2010-becoming-a-stampede/#comments</comments>
		<pubDate>Fri, 18 Nov 2011 14:00:15 +0000</pubDate>
		<dc:creator>John P Mello Jr</dc:creator>
				<category><![CDATA[email management]]></category>
		<category><![CDATA[email security]]></category>
		<category><![CDATA[Exchange server]]></category>
		<category><![CDATA[email migration]]></category>
		<category><![CDATA[Exchange 2010]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=4933</guid>
		<description><![CDATA[Microsoft Exchange 2010 was first introduced two years ago. While adoption was initially slow, despite Microsoft&#8217;s aggressive efforts to spur rapid adoption, it seems that companies are finally starting to see the benefits of the software and ready to migrate to it in a big way. According to a recent independent survey of some 500 [...]<p><a href="http://www.theemailadmin.com/2011/11/migration-to-exchange-2010-becoming-a-stampede/">Migration to Exchange 2010 Becoming a Stampede</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%2Fmigration-to-exchange-2010-becoming-a-stampede%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2011_2F11_2Fmigration-to-exchange-2010-becoming-a-stampede_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2011%2F11%2Fmigration-to-exchange-2010-becoming-a-stampede%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/GFI154-migration.jpg"><img class="alignright size-medium wp-image-4947" style="border-width: 0px; border-color: black; border-style: solid; margin: 10px;" src="http://www.theemailadmin.com/wp-content/uploads/2011/11/GFI154-migration-292x300.jpg" alt="" width="292" height="300" /></a>Microsoft Exchange 2010 was first introduced two years ago. While adoption was initially slow, despite Microsoft&#8217;s aggressive efforts to spur rapid adoption, it seems that companies are finally starting to see the benefits of the software and ready to migrate to it in a big way.</p>
<p>According to a recent independent survey of some 500 IT decision makers, more than three-quarters of them (77 percent) said they expected to migrate to Exchange 2010 or Office 365 in the next two years. If that happens, that means hundreds of thousands of businesses will be embracing the software in the next 24 months.<span id="more-4933"></span></p>
<p>There are many reasons why the migration to Exchange 2010 has become a stampede. Two of the top rationales are new features (57 percent), which includes better support for mobile devices, and easier administration (50 percent). Also high on the list of migration motivators were security (49 percent), larger mailboxes (49 percent), improved storage options (48 percent), and improved web access (46 percent), <a target="_blank" href="http://www.mimecast.com/Microsites/Campaigns/Great-Migration/The-Great-Email-Migration-Research-Report/" onclick="pageTracker._trackPageview('/outgoing/www.mimecast.com/Microsites/Campaigns/Great-Migration/The-Great-Email-Migration-Research-Report/?referer=');">the survey said</a>.</p>
<p>Also, to some extent  companies&#8217; enthusiasm to migrate is being fired by a recognition of the increased role email is playing to business success. Not only does Exchange 2010 offer better handling of email while imposing less of a burden on harried IT personnel, but it can do it at a lower cost.</p>
<p>According to a recent report in The Independent, email is far more effective in converting eyeballs into cash than any other web medium. 25 percent of people who open an email in a sales campaign will be converted into a buyer, the publication reported. That&#8217;s far and away higher than conversions from clicking on links (10 percent) and website visitations (2 percent).</p>
<p>As important as email is to a successful business, it can be costly to store and archive, which must be done for compliance as well as business reasons. Companies that have clung to older versions of Exchange are finding that the storage options offered by Exchange 2010—most notably the ability to swap out expensive SAN architecture for low cost SATA drives—can save them barrels of money. For instance, storage and archiving costs for an Exchange 2003 deployment can be 40 percent higher compared to what they cost with Exchange 2010.</p>
<p>There are productivity costs associated with older Exchange deployments too, especially because they don&#8217;t have the robust support of Exchange 2010 for the web and mobile platforms, <a target="_blank" href="http://www.independent.co.uk/news/business/email-security-and-features-driving-huge-email-migration-to-exchange-6259862.html" onclick="pageTracker._trackPageview('/outgoing/www.independent.co.uk/news/business/email-security-and-features-driving-huge-email-migration-to-exchange-6259862.html?referer=');">the independent reported</a>.</p>
<p>Another factor contributing to the step-up in Exchange 2010 adoption is its unique position as a bridge to the cloud. As the high-tech research firm Gartner has pointed out in the past,</p>
<blockquote><p>&#8220;Exchange 2010 represents both the beginning of the end of the premises-based email era, and the dawn of the cloud-based email era.&#8221;</p></blockquote>
<p>The strategy adopted by Microsoft for Exchange 2010 could pay off big for the company as it faces a growing number of competitors trying to capture a piece of its Exchange business.</p>
<blockquote><p>&#8220;With several low-cost competitors snapping at its heels,&#8221; <a target="_blank" href="http://www.informationweek.in/Software/10-01-14/Microsoft_Dangles_ROI_Bait_to_Push_Exchange_2010_Adoption.aspx" onclick="pageTracker._trackPageview('/outgoing/www.informationweek.in/Software/10-01-14/Microsoft_Dangles_ROI_Bait_to_Push_Exchange_2010_Adoption.aspx?referer=');">observed one technology commentator</a>, &#8220;Microsoft’s hybrid strategy is a win-win one as it allows the company to protect its customer base in the on-premise model—while simultaneously giving customers the choice to migrate to a new cloud-based model.&#8221;</p></blockquote>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2011/11/migration-to-exchange-2010-becoming-a-stampede/">Migration to Exchange 2010 Becoming a Stampede</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/migration-to-exchange-2010-becoming-a-stampede/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>All about Update Rollup 6 for Exchange Server 2010 Service Pack 1</title>
		<link>http://www.theemailadmin.com/2011/11/all-about-update-rollup-6-for-exchange-server-2010-service-pack-1/</link>
		<comments>http://www.theemailadmin.com/2011/11/all-about-update-rollup-6-for-exchange-server-2010-service-pack-1/#comments</comments>
		<pubDate>Thu, 17 Nov 2011 16:00:53 +0000</pubDate>
		<dc:creator>Casper Manes</dc:creator>
				<category><![CDATA[email management]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Patching]]></category>

		<guid isPermaLink="false">http://www.theemailadmin.com/?p=4897</guid>
		<description><![CDATA[Update Rollup 6 for Exchange Server 2010 Service Pack 1 was released late last month, and has been around long enough now that it is seriously time for you to plan its deployment into your Exchange infrastructure. With the problems that were encountered with RU4, many admins have been gun-shy and skipped RU5 altogether, but [...]<p><a href="http://www.theemailadmin.com/2011/11/all-about-update-rollup-6-for-exchange-server-2010-service-pack-1/">All about Update Rollup 6 for Exchange Server 2010 Service Pack 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%2F2011%2F11%2Fall-about-update-rollup-6-for-exchange-server-2010-service-pack-1%2F" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.theemailadmin.com_2F2011_2F11_2Fall-about-update-rollup-6-for-exchange-server-2010-service-pack-1_2F&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.theemailadmin.com%2F2011%2F11%2Fall-about-update-rollup-6-for-exchange-server-2010-service-pack-1%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/11/patching.jpg"><img class="alignright size-full wp-image-4937" src="http://www.theemailadmin.com/wp-content/uploads/2011/11/patching.jpg" alt="" width="158" height="158" /></a><a href="http://www.microsoft.com/download/en/details.aspx?id=27849" onclick="pageTracker._trackPageview('/outgoing/www.microsoft.com/download/en/details.aspx?id=27849&amp;referer=');">Update Rollup 6 for Exchange Server 2010 Service Pack 1</a> was released late last month, and has been around long enough now that it is seriously time for you to plan its deployment into your Exchange infrastructure<a href="http://www.theemailadmin.com/2011/07/exchange-2010-sp1-ru4-pulled-after-customer-issues/">. With the problems that were encountered with RU4</a>, many admins have been gun-shy and skipped RU5 altogether, but RU6 includes a number of fixes for system crashes and other issues, and with SP2 still lacking a release date, prudent admins should deploy this rollup on their systems.</p>
<p><span id="more-4897"></span>This rollup includes updates for Exchange server since the release of service pack 1 and includes twenty-eight fixes for issues as diverse as:</p>
<ul>
<li>retention policies</li>
<li>quotas</li>
<li>ActiveSync</li>
<li>incompatibility with antivirus programs</li>
<li>memory issues</li>
<li>and many more.</li>
</ul>
<p>As with any update to Exchange, you need to test this thoroughly in your environment, and the deployment is not without its own unique set of challenges, namely with Role Based Access Control and Forefront services.</p>
<p>Before deploying RU6 to your Exchange servers, you will need to tend to Forefront. If Forefront Protection for Exchange is running on your Exchange server when RU6 is deployed, you will probably find that post-install, neither the Information Store nor the Transport service start back up. To avoid this problem, open an elevated command prompt and stop all Forefront services. Once the rollup has deployed and you have verified all the appropriate Exchange services are running, restart Forefront. Assuming you are also tending to operating system patches while you have your maintenance window, you will be rebooting your servers anyway, so double-check when they come back up that all services are running properly.</p>
<p>Yes, that’s right, there are several operating system patches that have been released since RU4 (which is probably the last time you patched your Exchange servers) and some of them include fixes for critical vulnerabilities, so make sure you patch the operating system while you are at it.</p>
<p>The other issue to be aware of has to do with Role Based Access Control and Exchange 2010. If you are not using it, you won’t notice or care, but RU6 does make some changes that will cause what are called “cosmetic” issues with RBAC . These are transient, can safely be ignored, and will resolve themselves once all of the Exchange servers in your organization are running RU6, but between the first and the last, you will encounter errors when using the Exchange Control Panel to manage roles, or when using the Exchange Management Shell and running either the Get-ManagementRole or Get-ManagementRoleAssignment cmdlets.</p>
<p>Don’t worry about your existing RBAC configuration; it will continue to work without issue. But if you need to make any RBAC changes during the deployment of RU6, just make sure you establish your EMS session using a server that has already been updated to RU6. You can do that by running these commands in your PowerShell window, assuming you are already logged on using credentials that have rights to Exchange.</p>
<div>
<pre>$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri
 http://&lt;FQDN of Exchange 2010 server&gt;/PowerShell/ -Authentication Kerberos</pre>
<pre>Import-PSSession $Session</pre>
</div>
<p>Like any other patching for Exchange, remember to apply patches to your server roles as follows:</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>With the holiday season and year end approaching, take the time now to update your servers before things get so busy that you either forget, or are rushed to do the job without proper testing, and don’t forget those operating system patches while you are at it!</p>
<span id="pty_trigger"></span><p><a href="http://www.theemailadmin.com/2011/11/all-about-update-rollup-6-for-exchange-server-2010-service-pack-1/">All about Update Rollup 6 for Exchange Server 2010 Service Pack 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/2011/11/all-about-update-rollup-6-for-exchange-server-2010-service-pack-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

