Book Image

Microsoft Exchange 2010 PowerShell Cookbook

Book Image

Microsoft Exchange 2010 PowerShell Cookbook

Overview of this book

Table of Contents (22 chapters)
Microsoft Exchange 2010 PowerShell Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Creating an RPC Client Access array


Since CAS servers are now the MAPI endpoint for Outlook clients accessing Exchange 2010 mailboxes, it is recommended as a best practice that you create arrays of load-balanced CAS servers in order to provide high availability for the CAS server role. In this recipe, you'll learn how to create a CAS array using the Exchange Management Shell.

How to do it...

In order to create a CAS array, you must use the shell since there is no interface within the Exchange Management Console that allows you to perform this task. The following command creates a CAS array for the CorporateHQ site in Active Directory:

New-ClientAccessArray -Name CASArray01 `
-Fqdn outlook.contoso.com `
-Site CorporateHQ

How it works...

CAS arrays are used to group multiple CAS servers together using a logical server name that resolves to a load balanced IP address. This allows your clients to use a single CAS server name at all times, regardless of which CAS server in an array they are connected...