<?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>Exchange Server Pro &#187; Client Access Server</title>
	<atom:link href="http://exchangeserverpro.com/tag/client-access-server/feed" rel="self" type="application/rss+xml" />
	<link>http://exchangeserverpro.com</link>
	<description>Microsoft Exchange Server News - Tips - Tutorials</description>
	<lastBuildDate>Tue, 22 May 2012 11:37:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Modifying Autodiscover Site Scope for Exchange 2010</title>
		<link>http://exchangeserverpro.com/modifying-autodiscover-site-scope-exchange-2010</link>
		<comments>http://exchangeserverpro.com/modifying-autodiscover-site-scope-exchange-2010#comments</comments>
		<pubDate>Wed, 20 Apr 2011 10:00:38 +0000</pubDate>
		<dc:creator>Paul Cunningham</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[AutoDiscover]]></category>
		<category><![CDATA[Client Access Server]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Exchange Management Shell]]></category>
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://exchangeserverpro.com/?p=3282</guid>
		<description><![CDATA[This tutorial demonstrates how to modify Exchange Server 2010 Autodiscover site scopes to configure site affinity for Outlook clients.]]></description>
			<content:encoded><![CDATA[<p>Exchange Server 2007 introduced a new feature called <a href="http://technet.microsoft.com/en-us/library/bb124251.aspx">Autodiscover</a>, and this feature also exists in Exchange Server 2010.</p>
<p>Autodiscover is a web service running on <a title="Exchange 2010 FAQ: What are the Exchange Server 2010 Server Roles?" href="http://exchangeserverpro.com/exchange-2010-server-roles">Client Access servers</a> that, as the name suggests, allows compatible client software to automatically discover a user&#8217;s mailbox settings by looking them up in Active Directory.</p>
<p>But first the client needs to locate a Client Access server to connect to for Autodiscover requests. Internal clients (eg Outlook 2007/2010 running on domain-joined workstations) perform a lookup in Active Directory for which Client Access servers have an Autodiscover Site Scope configured for the Active Directory Site they are currently located in.</p>
<p>If the client can&#8217;t determine which Site it is in (eg the subnet is not defined as one of the Site boundaries), or there is no Client Access server explicitly configured for that Site, then the client chooses a Client Access server at random.</p>
<p>The risk here is that the client will choose a Client Access server that is not the most ideal one in terms of bandwidth and latency. To resolve this you can configure what is referred to as &#8220;site affinity&#8221; by setting the Autodiscover Site Scope on Client Access servers. This makes sure that clients will connect to the closest Autodiscover instance.</p>
<p>You can see the current Autodiscover Site Scope for all of your Client Access servers by running this command in the Exchange Management Shell.</p>
<pre>[PS] C:\&gt;Get-ClientAccessServer | ft name,autodiscoversitescope

Name                                                        AutoDiscoverSiteScope
----                                                        ---------------------
AUSYDEXC01                                                  {au-Sydney}
USNYCEXC01                                                  {us-NewYork}
EULONEXC01                                                  {eu-London}</pre>
<p>Let&#8217;s say for example there is another AD Site of au-Brisbane and users there connect to mailboxes hosted in the au-Sydney site. When these Brisbane Outlook 2007/2010 clients look for an Autodiscover server to connect to it is possible they will choose the New York or London server which have a slower connection over the WAN.</p>
<p>To add the au-Brisbane site to the Autodiscover Site Scope of the Sydney Client Access server we can run the following commands. Because this is a multi-value attribute we have to specify all of the sites in scope, not just the one that is being added. If this was a long list of sites it would be tedious to type out manually, so instead we can first retrieve the current list of sites into an array.</p>
<pre>[PS] C:\&gt;$sitescope = (Get-ClientAccessServer AUSYDEXC01).autodiscoversitescope

[PS] C:\&gt;$sitescope
au-Sydney</pre>
<p>Next we add the new site to the array.</p>
<pre>[PS] C:\&gt;$sitescope += "au-Brisbane"

[PS] C:\&gt;$sitescope
au-Sydney
au-Brisbane</pre>
<p>Finally we update the Client Access server with the new site scope settings.</p>
<pre>[PS] C:\&gt;Set-ClientAccessServer AUSYDEXC01 -AutoDiscoverSiteScope $sitescope</pre>
<p>If there were multiple Client Access servers in the au-Sydney site we could update them all at once with the following commands.</p>
<pre>[PS] C:\&gt;$sydneycas = Get-ExchangeServer | where {$_.Site -like "*au-Sydney" -AND $_.IsClientAccessServer -eq $true}

[PS] C:\&gt;$sydneycas | Set-ClientAccessServer -AutoDiscoverSiteScope $scope</pre>
<p>You can see the result of the change by retrieving the site scopes again.</p>
<pre>[PS] C:\&gt;Get-ClientAccessServer | ft name,autodiscoversitescope

Name                                                        AutoDiscoverSiteScope
----                                                        ---------------------
AUSYDEXC01                                                  {au-Brisbane,au-Sydney}
USNYCEXC01                                                  {us-NewYork}
EULONEXC01                                                  {eu-London}</pre>
<p>Note that Outlook clients will connect to Autodiscover using SSL so you must correctly <a title="Configure an SSL Certificate for Exchange Server 2010" href="http://exchangeserverpro.com/configure-an-ssl-certificate-for-exchange-server-2010">configure an SSL certificate for the Client Access servers</a>.</p>
<h3  class="related_post_title">Related posts:</h3><ul class="related_post"><li><a href="http://exchangeserverpro.com/powershell-script-check-exchange-2010-database-backups" title="PowerShell Script: Check Exchange 2010 Database Backups">PowerShell Script: Check Exchange 2010 Database Backups</a></li><li><a href="http://exchangeserverpro.com/exchange-2010-test-servicehealth" title="Using Test-ServiceHealth for Exchange Server Health Checks">Using Test-ServiceHealth for Exchange Server Health Checks</a></li><li><a href="http://exchangeserverpro.com/powershell-tip-find-commands" title="PowerShell Tip: Search for Commands by Keyword">PowerShell Tip: Search for Commands by Keyword</a></li><li><a href="http://exchangeserverpro.com/migrate-relay-connector-exchange-server-2007-2010" title="How to Migrate a Relay Connector from Exchange Server 2007 to 2010">How to Migrate a Relay Connector from Exchange Server 2007 to 2010</a></li><li><a href="http://exchangeserverpro.com/exchange-2010-report-authorized-send-distribution-list" title="Exchange 2010: How to Report Who is Authorized to Send to a Distribution List">Exchange 2010: How to Report Who is Authorized to Send to a Distribution List</a></li></ul><hr />
<p>This article <a href="http://exchangeserverpro.com/modifying-autodiscover-site-scope-exchange-2010">Modifying Autodiscover Site Scope for Exchange 2010</a> is © 2011 ExchangeServerPro.com</p>
<p>Get more <a href="http://exchangeserverpro.com">Exchange Server tips</a> at <a href="http://exchangeserverpro.com">ExchangeServerPro.com</a></p>]]></content:encoded>
			<wfw:commentRss>http://exchangeserverpro.com/modifying-autodiscover-site-scope-exchange-2010/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>How to Install Updates on Exchange Server 2010 CAS Arrays</title>
		<link>http://exchangeserverpro.com/how-to-install-updates-on-exchange-server-2010-cas-arrays</link>
		<comments>http://exchangeserverpro.com/how-to-install-updates-on-exchange-server-2010-cas-arrays#comments</comments>
		<pubDate>Sat, 11 Sep 2010 13:35:09 +0000</pubDate>
		<dc:creator>Paul Cunningham</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[CAS Array]]></category>
		<category><![CDATA[Client Access Server]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Updates]]></category>
		<category><![CDATA[Upgrades]]></category>

		<guid isPermaLink="false">http://exchangeserverpro.com/?p=2060</guid>
		<description><![CDATA[This tutorial demonstrates how to update a Client Access Server array without causing the entire array to go offline at once.  ]]></description>
			<content:encoded><![CDATA[<p>For most organizations the main benefit of deploying an <a href="http://exchangeserverpro.com/how-to-install-an-exchange-server-2010-client-access-server-array">Exchange Server 2010 Client Access Server array</a> is to minimize downtime.</p>
<p>So when it comes time to update the CAS array members with patches, update rollups or service packs, the update process needs to be managed in a way that prevents all of the CAS array members from being offline at the same time.</p>
<p>Typically this means installing the updates to CAS array members one at a time, allowing each one to complete the update and (if necessary) reboot before updating the next member.</p>
<p>This tutorial demonstrates how to update a Client Access Server array without causing the entire array to go offline at once.  For this tutorial Update Rollup 4 for Exchange Server 2010 RTM is being installed.</p>
<h2>Preparing the NLB Cluster for Updates</h2>
<p>The first step is to remove the server that is about to be updated from the Network Load Balancing (NLB) cluster.</p>
<p>There are two ways to take a CAS array member our of the NLB cluster:</p>
<ul>
<li>Issue a <strong>Stop</strong> command to the server</li>
<li>Issue a <strong>Drainstop</strong> command to the server</li>
</ul>
<p>The difference between the two is that Stop will immediately stop the server regardless of who is currently connected to it, while Drainstop will put the server in a state where it will not accept new connections but will continue serving existing connections until they disconnect.</p>
<p>For urgent updates a Stop command may be necessary, but for planned maintenance a Drainstop has the least potential impact on active client connections to the CAS array.</p>
<p>To issue a Drainstop launch <strong>Network Load Balancing Manager</strong>, right-click on the desired server, choose <strong>Control Host</strong> and then <strong>Drainstop</strong>.</p>
<p><img class="aligncenter size-full wp-image-2063" title="nlbdrainstop01" src="http://exchangeserverpro.com/wp-content/uploads/2010/09/nlbdrainstop01.png" alt="" width="386" height="259" /></p>
<p>When the server has no more active connections it will be in a stopped state.</p>
<p><img class="aligncenter size-full wp-image-2064" title="nlbdrainstop02" src="http://exchangeserverpro.com/wp-content/uploads/2010/09/nlbdrainstop02.png" alt="" width="264" height="86" /></p>
<p>Right click the server and choose Properties.  Set the default state of the server to Stopped.  This will prevent it from automatically starting and accepting client connections after any reboots that the updates require, to allow you time to verify the updates were successful first before rejoining the NLB cluster.</p>
<p><img class="aligncenter size-full wp-image-2067" title="nlbdrainstop03" src="http://exchangeserverpro.com/wp-content/uploads/2010/09/nlbdrainstop03.png" alt="" width="500" height="520" /></p>
<h2>Stop Conflicting Services</h2>
<p>The Client Access Server role is often installed on the same server as the Hub Transport server role, even when deployed as a CAS array.</p>
<p>Hub Transport servers often run additional applications such as antivirus and anti-spam software that hooks into the Exchange Server services.  These can cause conflicts with Exchange Server updates, for example if a third party application tries to automatically restart a service that it depends on that has been stopped by the update process.</p>
<p>Forefront is one example of this, so for servers running Forefront Protection for Exchange those services can be stopped using <a href="http://support.microsoft.com/kb/929076">FSUtility</a>.</p>
<pre>C:\&gt; fsutility /disable</pre>
<h2>Disabling Monitoring</h2>
<p>If the CAS array members are monitored using SCOM or another system this should also be disabled, or placed into maintenance mode before the update is performed.  This prevents unnecessary alarms in the monitoring system due to stopped services or server restarts, and also prevents the monitoring agent from trying to perform any automatic remediation such as restarting services.</p>
<h2>Backing Up the Server</h2>
<p>Some organizations will require an ad-hoc backup be run of at least one CAS array member before updates are applied.  Others will be happy to rely on the latest scheduled backup instead.  And some will even be satisfied that multiple CAS array members exist and so if a bad update puts one of them out of action there is no outage to end users, and the server can simply be manually reinstalled.</p>
<h2>Updating the Server</h2>
<p>Install the update following the procedure for that update type.</p>
<p>Update rollups come in the form of a .MSP file (Windows Installer Patch) that is applied to the server.  Simply double-click the file or launch it from a command line window.</p>
<p>Service packs are a complete reissue of the Exchange Server setup files and are installed by running setup in upgrade mode, which can be run in either graphical or command line mode.</p>
<pre>C:\&gt; setup /m:upgrade</pre>
<p>Both update rollups and service packs can take some time to install, so plan a large window of time for these updates.</p>
<p><img class="aligncenter size-full wp-image-2066" title="updateinprogress" src="http://exchangeserverpro.com/wp-content/uploads/2010/09/updateinprogress.png" alt="" width="450" height="268" /></p>
<h2>Verifying the Update</h2>
<p>After the update has completed, and if necessary the server rebooted, you should check the server&#8217;s health before placing it back into production in the CAS array.</p>
<p><strong>Event Logs</strong> &#8211; look for error or warning events that have started since the update was applied.</p>
<p><strong>Setup Logs</strong> &#8211; service packs write a complete setup log file to C:\ExchangeSetupLogs</p>
<p><strong>Services</strong> &#8211; check the Exchange services are running (or at least those that you expect to be running, some such as IMAP and POP will be stopped if you have not explicitly enabled them)</p>
<pre>[PS] C:\&gt;get-service *exchange*

Status   Name               DisplayName
------   ----               -----------
Running  MSExchangeAB       Microsoft Exchange Address Book
Running  MSExchangeADTop... Microsoft Exchange Active Directory...
Running  MSExchangeAntis... Microsoft Exchange Anti-spam Update
Running  MSExchangeEdgeSync Microsoft Exchange EdgeSync
Running  MSExchangeFBA      Microsoft Exchange Forms-Based Auth...
Running  MSExchangeFDS      Microsoft Exchange File Distribution
Stopped  MSExchangeImap4    Microsoft Exchange IMAP4
Running  MSExchangeMailb... Microsoft Exchange Mailbox Replication
Stopped  MSExchangeMonit... Microsoft Exchange Monitoring
Stopped  MSExchangePop3     Microsoft Exchange POP3
Running  MSExchangeProte... Microsoft Exchange Protected Servic...
Running  MSExchangeRPC      Microsoft Exchange RPC Client Access
Running  MSExchangeServi... Microsoft Exchange Service Host
Running  MSExchangeTrans... Microsoft Exchange Transport
Running  MSExchangeTrans... Microsoft Exchange Transport Log Se...
Stopped  msftesql-Exchange  Microsoft Search  (Exchange)
Running  vmickvpexchange    Hyper-V Data Exchange Service</pre>
<h2>Returning the Server to Production</h2>
<p>If the update was successful and the server healthy then it can be placed back into production.</p>
<p>Re-enable services such as Forefront Protection for Exchange.</p>
<pre>C:\&gt; fsutility /enable</pre>
<p>Start the server in the NLB cluster.</p>
<p><img class="aligncenter size-full wp-image-2068" title="nlbstart01" src="http://exchangeserverpro.com/wp-content/uploads/2010/09/nlbstart01.png" alt="" width="367" height="257" />Set the NLB initial host state to Started.</p>
<p><img class="aligncenter size-full wp-image-2069" title="nlbstart02" src="http://exchangeserverpro.com/wp-content/uploads/2010/09/nlbstart02.png" alt="" width="339" height="93" />And re-enable monitoring agents and alarms for the server.</p>
<p>After the first CAS array member has been successfully updated you can move on to the next one.</p>
<h3  class="related_post_title">Related posts:</h3><ul class="related_post"><li><a href="http://exchangeserverpro.com/exchange-server-2010-cas-array" title="Getting Started with Exchange Server 2010 Client Access Server Arrays">Getting Started with Exchange Server 2010 Client Access Server Arrays</a></li><li><a href="http://exchangeserverpro.com/upgrading-exchange-server-2010-service-pack-2" title="Upgrading to Exchange Server 2010 Service Pack 2">Upgrading to Exchange Server 2010 Service Pack 2</a></li><li><a href="http://exchangeserverpro.com/exchange-server-2010-service-pack-2" title="Exchange Server 2010 Service Pack 2">Exchange Server 2010 Service Pack 2</a></li><li><a href="http://exchangeserverpro.com/how-to-install-updates-on-exchange-server-2010-database-availability-groups" title="How to Install Updates on Exchange Server 2010 Database Availability Groups">How to Install Updates on Exchange Server 2010 Database Availability Groups</a></li><li><a href="http://exchangeserverpro.com/teched-video-load-balancing-microsoft-exchange-server-2010" title="TechEd Video: Load Balancing with Microsoft Exchange Server 2010">TechEd Video: Load Balancing with Microsoft Exchange Server 2010</a></li></ul><hr />
<p>This article <a href="http://exchangeserverpro.com/how-to-install-updates-on-exchange-server-2010-cas-arrays">How to Install Updates on Exchange Server 2010 CAS Arrays</a> is © 2010 ExchangeServerPro.com</p>
<p>Get more <a href="http://exchangeserverpro.com">Exchange Server tips</a> at <a href="http://exchangeserverpro.com">ExchangeServerPro.com</a></p>]]></content:encoded>
			<wfw:commentRss>http://exchangeserverpro.com/how-to-install-updates-on-exchange-server-2010-cas-arrays/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>How to Install an Exchange Server 2010 Client Access Server Array using Windows Network Load Balancing</title>
		<link>http://exchangeserverpro.com/how-to-install-an-exchange-server-2010-client-access-server-array</link>
		<comments>http://exchangeserverpro.com/how-to-install-an-exchange-server-2010-client-access-server-array#comments</comments>
		<pubDate>Sat, 04 Sep 2010 20:30:13 +0000</pubDate>
		<dc:creator>Paul Cunningham</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Client Access Server]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[High Availability]]></category>
		<category><![CDATA[NLB]]></category>

		<guid isPermaLink="false">http://exchangeserverpro.com/?p=2032</guid>
		<description><![CDATA[This tutorial will demonstrate the steps for deploying Exchange Server 2010 as a Client Access Server array using Windows Network Load Balancing.]]></description>
			<content:encoded><![CDATA[<p>This tutorial will demonstrate the steps for deploying <a href="http://exchangeserverpro.com">Exchange Server 2010</a> as a Client Access Server array using Windows NLB.</p>
<p>If you&#8217;re new to the concept of Client Access Server arrays and need to know more then check out this article for an <a href="http://exchangeserverpro.com/exchange-server-2010-cas-array">introduction and overview of CAS Arrays</a>.</p>
<h2>Client Access Server Array Pre-Requisites</h2>
<p>Two or more Exchange Server 2010 Client Access Servers can be configured as a CAS array using NLB as long they are not also installed as Mailbox servers that are members of a <a title="Exchange Server 2010 Database Availability Group Installation Step by Step" href="http://exchangeserverpro.com/exchange-server-2010-database-availability-group-installation-step-by-step">Database Availability Group</a> (DAG).</p>
<p>The reason is that DAG members utilize Windows Failover Clustering, which can&#8217;t co-exist with NLB.</p>
<p>To demonstrate the setup of a CAS array the following servers have been provisioned.</p>
<p><strong>Server #1</strong></p>
<ul>
<li>Operating System: Windows Server 2008 64-bit R2</li>
<li>Name: EX3.exchangeserverpro.local</li>
<li>Primary Interface: 192.168.0.34/24</li>
<li>Secondary Interface: 192.168.0.36/24</li>
</ul>
<p><strong>Server #2</strong></p>
<ul>
<li>Operating System: Windows Server 2008 64-bit R2</li>
<li>Name: EX4.exchangeserverpro.local</li>
<li>Primary Interface: 192.168.0.35/24</li>
<li>Secondary Interface: 192.168.0.37/24</li>
</ul>
<p>The IP address allocated to the NLB cluster will be 192.168.0.38.</p>
<h3>Installing the Exchange Server 2010 Client Access Server Pre-Requisites</h3>
<p>On each server, from an elevated Windows PowerShell prompt, run the following commands.</p>
<pre>PS C:\&gt; Import-Module ServerManager</pre>
<p>Note: In my lab the servers are also Hub Transport servers, and so I installed both sets of pre-requisites. I also use the -Restart switch to automate the restart of the servers, however you can remove this if you wish to control when the servers are restarted.</p>
<p><em>For only the Client Access Server pre-requisites:</em></p>
<pre>PS C:\&gt; Add-WindowsFeature NET-Framework,RSAT-ADDS,Web-Server,Web-Basic-Auth,Web-Windows-Auth,Web-Metabase,Web-Net-Ext,Web-Lgcy-Mgmt-Console,WAS-Process-Model,RSAT-Web-Server,Web-ISAPI-Ext,Web-Digest-Auth,Web-Dyn-Compression,NET-HTTP-Activation,RPC-Over-HTTP-Proxy -Restart</pre>
<p><em>For the Client Access Server and Hub Transport Server pre-requisites:</em></p>
<pre>Add-WindowsFeature NET-Framework,RSAT-ADDS,Web-Server,Web-Basic-Auth,Web-Windows-Auth,Web-Metabase,Web-Net-Ext,Web-Lgcy-Mgmt-Console,WAS-Process-Model,RSAT-Web-Server,Web-ISAPI-Ext,Web-Digest-Auth,Web-Dyn-Compression,NET-HTTP-Activation,RPC-Over-HTTP-Proxy -Restart</pre>
<p>After the servers are restarted run the following command, again from an elevated PowerShell window.</p>
<pre>Set-Service NetTcpPortSharing -StartupType Automatic</pre>
<h3>Installing the Exchange Server 2010 Client Access Server Role</h3>
<p>From an elevated command prompt run the following unattended setup command.</p>
<p>Note: Again, my lab servers are also Hub Transport servers.</p>
<p><em>For only the Client Access Server role with Management Tools:</em></p>
<pre>C:\admin\Exchange Server 2010&gt; setup /m:install /r:ca,mt</pre>
<p><em>For both the Client Access and Hub Transport Server roles with Management Tools:</em></p>
<pre>C:\admin\Exchange Server 2010&gt; setup /m:install /r:ca,ht,mt</pre>
<h3>Installing Windows Network Load Balancing</h3>
<p>On each of the servers, from an elevated PowerShell window run the following commands.</p>
<pre>PS C:\&gt; Import-Module servermanager</pre>
<pre>PS C:\&gt; Add-WindowsFeature NLB</pre>
<h2>Creating the NLB Cluster</h2>
<p>After both servers have been prepared the NLB cluster can be created.  On the first server launch the <strong>Network Load Balancing Manager</strong> from Administrative Tools.</p>
<p>From the <strong>Cluster</strong> menu choose <strong>New</strong>.</p>
<p><img class="aligncenter size-full wp-image-2034" title="nlb01" src="http://exchangeserverpro.com/wp-content/uploads/2010/09/nlb01.png" alt="" width="253" height="122" /></p>
<p>Connect to the first server for the NLB cluster.</p>
<p><img class="aligncenter size-full wp-image-2035" title="nlb02" src="http://exchangeserverpro.com/wp-content/uploads/2010/09/nlb02.png" alt="" width="477" height="172" /></p>
<p>Choose the interface that is to be used for the cluster, and then click <strong>Next</strong>.</p>
<p><img class="aligncenter size-full wp-image-2036" title="nlb03" src="http://exchangeserverpro.com/wp-content/uploads/2010/09/nlb03.png" alt="" width="478" height="267" /></p>
<p>Accept the default Host parameters and click <strong>Next</strong>.</p>
<p><img class="aligncenter size-full wp-image-2037" title="nlb04" src="http://exchangeserverpro.com/wp-content/uploads/2010/09/nlb04.png" alt="" width="400" height="372" /></p>
<p>Click <strong>Add</strong> and enter an IPv4 address for the NLB cluster, then click <strong>OK</strong>.</p>
<p><img class="aligncenter size-full wp-image-2038" title="nlb05" src="http://exchangeserverpro.com/wp-content/uploads/2010/09/nlb05.png" alt="" width="350" height="285" /></p>
<p>Click <strong>Next</strong> to continue.</p>
<p><img class="aligncenter size-full wp-image-2039" title="nlb06" src="http://exchangeserverpro.com/wp-content/uploads/2010/09/nlb06.png" alt="" width="450" height="418" /></p>
<p>Enter a name for the cluster.  In this example I&#8217;m using <strong>casarray.exchangeserverpro.local</strong>.  Click <strong>Next</strong> to continue.</p>
<p><img class="aligncenter size-full wp-image-2040" title="nlb07" src="http://exchangeserverpro.com/wp-content/uploads/2010/09/nlb07.png" alt="" width="450" height="418" /></p>
<p>Although the port rules can be made more specific, in this example the default rule is acceptable.  Click <strong>Finish</strong> to complete the creation of the NLB cluster.</p>
<p><img class="aligncenter size-full wp-image-2041" title="nlb08" src="http://exchangeserverpro.com/wp-content/uploads/2010/09/nlb08.png" alt="" width="450" height="418" /></p>
<p>At this stage you should have a single host NLB cluster that is successfully converged.</p>
<p><img class="aligncenter size-full wp-image-2042" title="nlb09" src="http://exchangeserverpro.com/wp-content/uploads/2010/09/nlb09.png" alt="" width="550" height="136" /></p>
<p>Right-click the cluster name and choose <strong>Add Host to Cluster</strong>.</p>
<p><img class="aligncenter size-full wp-image-2043" title="nlb10" src="http://exchangeserverpro.com/wp-content/uploads/2010/09/nlb10.png" alt="" width="344" height="183" /></p>
<p>Enter the name of the second server and click <strong>Connect</strong>.  Choose the interface to be used for the cluster and click <strong>Next</strong>.</p>
<p><img class="aligncenter size-full wp-image-2044" title="nlb11" src="http://exchangeserverpro.com/wp-content/uploads/2010/09/nlb11.png" alt="" width="450" height="418" /></p>
<p>Accept the default Host Parameters and click <strong>Next</strong>.</p>
<p><img class="aligncenter size-full wp-image-2045" title="nlb12" src="http://exchangeserverpro.com/wp-content/uploads/2010/09/nlb12.png" alt="" width="450" height="418" /></p>
<p>There are no changed necessary to the port rules, so click <strong>Finish</strong>.</p>
<p><img class="aligncenter size-full wp-image-2046" title="nlb13" src="http://exchangeserverpro.com/wp-content/uploads/2010/09/nlb13.png" alt="" width="450" height="418" /></p>
<p>You should now have a dual host NLB cluster that is successfully converged.</p>
<p><img class="aligncenter size-full wp-image-2047" title="nlb14" src="http://exchangeserverpro.com/wp-content/uploads/2010/09/nlb14.png" alt="" width="485" height="183" /></p>
<p>One final step, on each of the NLB members run the following command to allow the NLB virtual IP address to be reachable from outside of the subnet that it resides in.</p>
<pre>netsh interface ipv4 set int "NLB" forwarding=enabled</pre>
<p>Replance &#8220;NLB&#8221; with the name of your NLB interface on your server.</p>
<h2>Creating the Client Access Server Array</h2>
<p>Now that the NLB cluster has been formed we can create the CAS array in Exchange Server 2010.</p>
<p>First, register a DNS record for the NLB cluster name.</p>
<p><img class="aligncenter size-full wp-image-2048" title="dns01" src="http://exchangeserverpro.com/wp-content/uploads/2010/09/dns01.png" alt="" width="550" height="411" /></p>
<p>Next, launch the Exchange Management Shell on one of the Exchange servers and run the following command.</p>
<pre>[PS] C:\&gt;New-ClientAccessArray -Name CASArray -Site "Default-First-Site-Name" -Fqdn casarray.exchangeserverpro.local

Name                Site                 Fqdn                           Members
----                ----                 ----                           -------
CASArray            Default-First-Sit... casarray.exchangeserverpro.... {EX3, EX4}</pre>
<p>Substitute the Name, Site, and FQDN as appropriate for your environment.</p>
<h2>Updating Existing Mailbox Databases</h2>
<p>When the CAS array has been established any new mailbox databases created on servers in that Active Directory Site will be configured with the CAS array as their <a title="Outlook Clients Unable to Connect to Exchange 2010 After Client Access Server Role Moved" href="http://exchangeserverpro.com/outlook-clients-unable-to-connect-to-exchange-2010-after-client-access-server-role-moved">RpcClientAccessServer</a>.</p>
<p>However any existing mailbox databases need to be manually updates so that those mailbox users begin connecting to the new CAS array.</p>
<p>You can see here that the existing mailbox database on server EX2 is still configured with a standalone Client Access server as its RpcClientAccessServer.</p>
<pre>[PS] C:\&gt;Get-MailboxDatabase -Server EX2 | fl name, rpc*

Name                  : Mailbox Database 02
RpcClientAccessServer : EX3.exchangeserverpro.local</pre>
<p>To update all databases on the server with the new RpcClientAccessServer run the following command.</p>
<pre>[PS] C:\&gt;Get-MailboxDatabase -Server EX2 | Set-MailboxDatabase -RpcClientAccessServer casarray.exchangeserverpro.local</pre>
<p>The change can be seen by running the same command as earlier.</p>
<pre>[PS] C:\&gt;Get-MailboxDatabase -Server EX2 | fl name, rpc*

Name                  : Mailbox Database 02
RpcClientAccessServer : casarray.exchangeserverpro.local</pre>
<p><em>Note that any existing Outlook profiles will not automatically update from the single Client Access Server to the new CAS array name. Those clients will not automatically failover to an alternate member of the CAS array when there is a server failure. You will need to update those profiles for them to receive the high availability benefits of the CAS array. This is one reason that it is important to establish CAS arrays prior to migrating user mailboxes to Exchange Server 2010.<br />
</em></p>
<h3  class="related_post_title">Related posts:</h3><ul class="related_post"><li><a href="http://exchangeserverpro.com/configure-file-share-witness-exchange-2010-database-availability-group" title="How to Configure a File Share Witness for an Exchange 2010 Database Availability Group">How to Configure a File Share Witness for an Exchange 2010 Database Availability Group</a></li><li><a href="http://exchangeserverpro.com/teched-video-exchange-server-2010-high-availability-deep-dive" title="TechEd Video: Exchange Server 2010 High Availability Deep Dive">TechEd Video: Exchange Server 2010 High Availability Deep Dive</a></li><li><a href="http://exchangeserverpro.com/teched-video-exchange-server-2010-high-availability-concepts" title="TechEd Video: Exchange Server 2010 High Availability Concepts">TechEd Video: Exchange Server 2010 High Availability Concepts</a></li><li><a href="http://exchangeserverpro.com/poll-cas-arrays-deployed-exchange-2010-sites" title="Poll: Should CAS Arrays be Deployed in all Exchange 2010 Sites?">Poll: Should CAS Arrays be Deployed in all Exchange 2010 Sites?</a></li><li><a href="http://exchangeserverpro.com/modifying-autodiscover-site-scope-exchange-2010" title="Modifying Autodiscover Site Scope for Exchange 2010">Modifying Autodiscover Site Scope for Exchange 2010</a></li></ul><hr />
<p>This article <a href="http://exchangeserverpro.com/how-to-install-an-exchange-server-2010-client-access-server-array">How to Install an Exchange Server 2010 Client Access Server Array using Windows Network Load Balancing</a> is © 2010 ExchangeServerPro.com</p>
<p>Get more <a href="http://exchangeserverpro.com">Exchange Server tips</a> at <a href="http://exchangeserverpro.com">ExchangeServerPro.com</a></p>]]></content:encoded>
			<wfw:commentRss>http://exchangeserverpro.com/how-to-install-an-exchange-server-2010-client-access-server-array/feed</wfw:commentRss>
		<slash:comments>92</slash:comments>
		</item>
		<item>
		<title>Migrate SSL Certificates from Exchange Server 2003 to Exchange Server 2007</title>
		<link>http://exchangeserverpro.com/migrate-ssl-certificates-from-exchange-server-2003-to-exchange-server-2007</link>
		<comments>http://exchangeserverpro.com/migrate-ssl-certificates-from-exchange-server-2003-to-exchange-server-2007#comments</comments>
		<pubDate>Fri, 28 Aug 2009 08:30:10 +0000</pubDate>
		<dc:creator>Paul Cunningham</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Certificates]]></category>
		<category><![CDATA[Client Access Server]]></category>
		<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Exchange Server 2007 Transition Guide]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[SSL]]></category>

		<guid isPermaLink="false">http://exchangeserverpro.com/?p=822</guid>
		<description><![CDATA[How to migrate your SSL certificates from Exchange Server 2003 to the Exchange Server 2007 Client Access Server.]]></description>
			<content:encoded><![CDATA[<p>The Exchange Server 2007 Client Access Server is installed with a self-signed certificate on the IIS site hosting Exchange remote access services.  Before publishing this to the internet you should export your existing SSL certificate from the Exchange Server 2003 server and import it on the Exchange Server 2007 server.</p>
<h2>Export the SSL Certificate from the Exchange Server 2003 server</h2>
<p>On the Exchange Server 2003 server go to <strong>Start </strong><strong>-&gt; Run</strong> and launch <strong>mmc.exe</strong>.</p>
<p><img class="alignnone size-full wp-image-835" title="mmc01" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/mmc01.png" alt="mmc01" width="508" height="255" /></p>
<p>Click <strong>File</strong> and <strong>Add/Remove Snap-in</strong>.</p>
<p><img class="alignnone size-full wp-image-836" title="mmc02" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/mmc02.png" alt="mmc02" width="258" height="124" /></p>
<p>Click on <strong>Add</strong> and choose the <strong>Certificates</strong> snap-in.</p>
<p><img class="alignnone size-full wp-image-837" title="mmc03" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/mmc03.png" alt="mmc03" width="492" height="517" /></p>
<p>Choose <strong>Computer Account</strong> then click <strong>Next</strong>.</p>
<p><img class="alignnone size-full wp-image-838" title="mmc04" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/mmc04.png" alt="mmc04" width="295" height="148" /></p>
<p>Choose <strong>Local Computer</strong> and then click <strong>Finish</strong>.</p>
<p><img class="alignnone size-full wp-image-839" title="mmc05" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/mmc05.png" alt="mmc05" width="502" height="189" /></p>
<p>Click <strong>Close</strong> and <strong>OK</strong> to return to the MMC, with the Certificates snap-in now installed.  Navigate to <strong>Certificates (Local Computer)/Personal/Certificates</strong>.  The SSL certificate used for Exchange remote access will be visible in the right pane of the console.</p>
<p><img class="alignnone size-full wp-image-840" title="mmc06" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/mmc06.png" alt="mmc06" width="475" height="176" /></p>
<p>Right-click the certificate and choose <strong>All Tasks </strong><strong>-&gt; Export</strong>.  Click <strong>Next</strong> to move past the welcome dialog for the Certificate Export Wizard.</p>
<p><img class="alignnone size-full wp-image-823" title="certexp01" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/certexp01.png" alt="certexp01" width="360" height="169" /></p>
<p>Choose <strong>Yes, export the private key</strong> and then click <strong>Next</strong>.</p>
<p><img class="alignnone size-full wp-image-824" title="certexp02" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/certexp02.png" alt="certexp02" width="343" height="215" /></p>
<p>Click <strong>Next</strong> to accept the default file format.</p>
<p>Enter a password for the exported certificate.  You will need to remember this password to import the certificate onto other servers.  Click <strong>Next</strong> to continue.</p>
<p><img class="alignnone size-full wp-image-825" title="certexp03" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/certexp03.png" alt="certexp03" width="301" height="131" /></p>
<p>Enter a file name for the exported certificate.  Click <strong>Next</strong> to continue.</p>
<p><img class="alignnone size-full wp-image-826" title="certexp04" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/certexp04.png" alt="certexp04" width="379" height="128" /></p>
<p>Click <strong>Finish</strong> to complete the wizard.</p>
<h2>Import the SSL Certificate on the Exchange Server 2007 server</h2>
<p>Copy the exported certificate file to the Exchange Server 2007 server.</p>
<p>On the Exchange Server 2007 server launch <strong>mmc.exe</strong> and add the Certificates snap-in.  Navigate to <strong>Certificates (Local Computer)/Personal/Certificates</strong>.  Right-click Certificates and choose <strong>All Tasks -&gt;</strong><strong> Import</strong>.  Click <strong>Next</strong> to move past the welcome dialog.</p>
<p>Browse to the location you copied the certificate file to.  Select the file and click <strong>Open</strong>.</p>
<p><img class="alignnone size-full wp-image-827" title="certimp01" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/certimp01.png" alt="certimp01" width="503" height="287" /></p>
<p>Click <strong>Next</strong> to continue.</p>
<p><img class="alignnone size-full wp-image-828" title="certimp02" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/certimp02.png" alt="certimp02" width="383" height="103" /></p>
<p>Enter the password for the certificate, and tick the box to mark the key as exportable.  Click <strong>Next</strong> to continue.</p>
<p><img class="alignnone size-full wp-image-829" title="certimp03" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/certimp03.png" alt="certimp03" width="424" height="193" /></p>
<p>Click <strong>Next</strong> to import the certificate to the Personal certificate store.</p>
<p><img class="alignnone size-full wp-image-830" title="certimp04" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/certimp04.png" alt="certimp04" width="445" height="139" /></p>
<p>Click <strong>Finish</strong> to complete the Certificate Import Wizard.</p>
<p class="note">Note: These next steps apply to IIS 7 on Windows Server 2008.</p>
<p>Launch <strong>Internet Information Services (IIS) Manager</strong> from the Administrative Tools menu of the Exchange Server 2007 server.  Navigate to the <strong>Default Web Site</strong>.</p>
<p><img class="alignnone size-full wp-image-831" title="iis01" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/iis01.png" alt="iis01" width="251" height="175" /></p>
<p>Click <strong>Bindings </strong>in the Actions pane of the IIS Manager console.</p>
<p><img class="alignnone size-full wp-image-832" title="iis02" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/iis02.png" alt="iis02" width="202" height="178" /></p>
<p>Select <strong>https</strong> and then click <strong>Edit</strong>.</p>
<p><img class="alignnone size-full wp-image-833" title="iis03" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/iis03.png" alt="iis03" width="473" height="197" /></p>
<p>Use the drop-down list to select the SSL certificate that you imported on the server.</p>
<p><img class="alignnone size-full wp-image-834" title="iis04" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/iis04.png" alt="iis04" width="407" height="222" /></p>
<p>Click <strong>OK</strong> and then <strong>Close</strong>.</p>
<h3  class="related_post_title">Related posts:</h3><ul class="related_post"><li><a href="http://exchangeserverpro.com/exchange-server-2010-and-the-benefits-of-commercial-ssl-certificates" title="Exchange Server 2010 and the Benefits of Commercial SSL Certificates">Exchange Server 2010 and the Benefits of Commercial SSL Certificates</a></li><li><a href="http://exchangeserverpro.com/configuring-the-exchange-server-2007-client-access-server" title="Configuring the Exchange Server 2007 Client Access Server">Configuring the Exchange Server 2007 Client Access Server</a></li><li><a href="http://exchangeserverpro.com/exchange-2010-wildcard-ssl-certificates" title="Exchange 2010 FAQ: Are Wildcard SSL Certificates Supported?">Exchange 2010 FAQ: Are Wildcard SSL Certificates Supported?</a></li><li><a href="http://exchangeserverpro.com/500-internal-server-error-exchange-2007-outlook-web-access" title="500 Internal Server Error for Exchange 2007 Outlook Web Access">500 Internal Server Error for Exchange 2007 Outlook Web Access</a></li><li><a href="http://exchangeserverpro.com/exchange-ssl-certificate-management-survey" title="Exchange SSL Certificate Management Survey">Exchange SSL Certificate Management Survey</a></li></ul><hr />
<p>This article <a href="http://exchangeserverpro.com/migrate-ssl-certificates-from-exchange-server-2003-to-exchange-server-2007">Migrate SSL Certificates from Exchange Server 2003 to Exchange Server 2007</a> is © 2009 ExchangeServerPro.com</p>
<p>Get more <a href="http://exchangeserverpro.com">Exchange Server tips</a> at <a href="http://exchangeserverpro.com">ExchangeServerPro.com</a></p>]]></content:encoded>
			<wfw:commentRss>http://exchangeserverpro.com/migrate-ssl-certificates-from-exchange-server-2003-to-exchange-server-2007/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Configuring the Exchange Server 2007 Client Access Server</title>
		<link>http://exchangeserverpro.com/configuring-the-exchange-server-2007-client-access-server</link>
		<comments>http://exchangeserverpro.com/configuring-the-exchange-server-2007-client-access-server#comments</comments>
		<pubDate>Mon, 24 Aug 2009 16:04:16 +0000</pubDate>
		<dc:creator>Paul Cunningham</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[ActiveSync]]></category>
		<category><![CDATA[Client Access Server]]></category>
		<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Exchange Server 2007 Transition Guide]]></category>
		<category><![CDATA[Outlook Anywhere]]></category>
		<category><![CDATA[OWA]]></category>

		<guid isPermaLink="false">http://exchangeserverpro.com/?p=776</guid>
		<description><![CDATA[How to configure the Client Access Server role for Exchange Server 2007.]]></description>
			<content:encoded><![CDATA[<p>Last week we looked at <a href="http://exchangeserverpro.com/preparing-for-an-exchange-server-2007-transition/">how to plan for an Exchange Server 2007 transition</a>, how to <a href="http://exchangeserverpro.com/preparing-a-new-server-for-exchange-server-2007/">prepare</a><a href="http://exchangeserverpro.com/preparing-a-new-server-for-exchange-server-2007/"> and install a new server</a> to host Exchange Server 2007, and <a href="http://exchangeserverpro.com/installing-exchange-server-2007/">how to install the first Exchange Server 2007 server</a> in the organization.  This week we continue with configuring the new Exchange server roles, starting with the Client Access Server.</p>
<p>Open the Exchange Management Console and navigate to <strong>Server Configuration/Client Access</strong>.</p>
<p><img class="alignnone size-full wp-image-777" title="cas01" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/cas01.png" alt="cas01" width="525" height="281" /></p>
<h2>Configure Outlook Web Access</h2>
<p>Before Outlook Web Access is published to the internet you must enter the external URL.  Open the properties of the <strong>owa (Default Web Site)</strong> and enter the external URL in the field shown here.</p>
<p><img class="alignnone size-full wp-image-778" title="cas02" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/cas02.png" alt="cas02" width="445" height="347" /></p>
<p>If you are publishing via ISA Server select the <strong>Authentication</strong> tab and choose <strong>Use one or more standard authentication methods</strong>, setting it to <strong>Integrated Authentication</strong> and <strong>Basic Authentication</strong>.</p>
<p><img class="alignnone size-full wp-image-779" title="cas03" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/cas03.png" alt="cas03" width="444" height="169" /></p>
<p>Click <strong>OK</strong> when complete.  A warning will appear that the changes will not take effect until IIS is restarted.</p>
<p><img class="alignnone size-full wp-image-780" title="cas04" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/cas04.png" alt="cas04" width="480" height="161" /></p>
<p>Click <strong>OK</strong> but don&#8217;t worry about restarting IIS yet, we&#8217;ll be restarting it soon.</p>
<h2>Configure ActiveSync</h2>
<p>Similar to Outlook Web Access the ActiveSync external URL must be configured if it is being published to the internet.  Choose the <strong>Exchange ActiveSync</strong> tab and then open the properties of <strong>Microsoft-Server-ActiveSync</strong>.</p>
<p>Enter the external URL in the field shown here.</p>
<p><img class="alignnone size-full wp-image-781" title="cas05-async" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/cas05-async.png" alt="cas05-async" width="445" height="322" /></p>
<p>Click <strong>OK</strong> when complete.</p>
<h2>Configure Outlook Anywhere</h2>
<p>In the Actions pane to the right of the Exchange Management Console click on <strong>Enable Outlook Anywhere</strong>.</p>
<p><img class="alignnone size-full wp-image-782" title="cas06-rpc" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/cas06-rpc.png" alt="cas06-rpc" width="213" height="123" /></p>
<p>Enter the external host name in the field shown here.</p>
<p><img class="alignnone size-full wp-image-785" title="cas07-rpc" src="http://exchangeserverpro.com/wp-content/uploads/2009/08/cas07-rpc.png" alt="cas07-rpc" width="500" height="230" /></p>
<p>If you are publishing via an ISA Server on the same external IP address as Outlook Web Access then choose <strong>Basic Authentication</strong>.  If you can dedicate an external IP address for publishing Outlook Anywhere then choose <strong>NTLM Authentication</strong>.</p>
<p>Click <strong>Enable</strong> when complete.  You will receive a warning that Outlook Anywhere will not be available for up to 15 minutes.  Click <strong>Finish</strong> to clear that warning.</p>
<h3  class="related_post_title">Related posts:</h3><ul class="related_post"><li><a href="http://exchangeserverpro.com/test-your-exchange-server-remote-connectivity" title="Test your Exchange Server remote connectivity">Test your Exchange Server remote connectivity</a></li><li><a href="http://exchangeserverpro.com/exchange-remote-connectivity-analyzer-updated" title="Exchange Remote Connectivity Analyzer Updated">Exchange Remote Connectivity Analyzer Updated</a></li><li><a href="http://exchangeserverpro.com/publish-exchange-server-2007-owa-using-isa-server-2006" title="Publish Exchange Server 2007 OWA Using ISA Server 2006">Publish Exchange Server 2007 OWA Using ISA Server 2006</a></li><li><a href="http://exchangeserverpro.com/migrate-ssl-certificates-from-exchange-server-2003-to-exchange-server-2007" title="Migrate SSL Certificates from Exchange Server 2003 to Exchange Server 2007">Migrate SSL Certificates from Exchange Server 2003 to Exchange Server 2007</a></li><li><a href="http://exchangeserverpro.com/owa-error-mailbox-trying-access-not-currently-available" title="OWA Error: The Mailbox You&#8217;re Trying to Access Isn&#8217;t Currently Available">OWA Error: The Mailbox You&#8217;re Trying to Access Isn&#8217;t Currently Available</a></li></ul><hr />
<p>This article <a href="http://exchangeserverpro.com/configuring-the-exchange-server-2007-client-access-server">Configuring the Exchange Server 2007 Client Access Server</a> is © 2009 ExchangeServerPro.com</p>
<p>Get more <a href="http://exchangeserverpro.com">Exchange Server tips</a> at <a href="http://exchangeserverpro.com">ExchangeServerPro.com</a></p>]]></content:encoded>
			<wfw:commentRss>http://exchangeserverpro.com/configuring-the-exchange-server-2007-client-access-server/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

