Applies to: Exchange Server 2010 SP3, Exchange Server 2010 SP2
Topic Last Modified: 2011-05-19
When a user has synchronized a mobile phone with their mailbox, the Manage Mobile Device wizard lets you view and manage the mobile phones for that user.
Looking for other management tasks related to Client Access namespaces? Check out Managing External Client Access.
Prerequisites
The Client Access server role has been installed.
What Do You Want to Do?
Use the EMC to configure external Client Access namespaces
You need to be assigned permissions before you can perform this procedure. To see what permissions you need, see the "Client Access server settings" entry in the Client Access Permissions topic.
- In the console tree, navigate to Server Configuration
> Client Access.
- In the action pane,
click Configure External Client Access Domain to open the
Configure External Client Access Domain wizard.
- This wizard helps you associate an external DNS address with
one or more Client Access servers. The
ExternalURL
property for all services is configured when an external Client Access domain is specified.
- This wizard helps you associate an external DNS address with
one or more Client Access servers. The
- On the Configure External Client Access Domain page,
enter the domain name you'll use with your external Client Access
servers.
- Click Add to select the Client Access servers that will
be associated with this ExternalURL.
- Click
Configure to complete the Configure External Client
Access Domain wizard.
Use the Shell to configure external Client Access namespaces
You need to be assigned permissions before you can perform this procedure. To see what permissions you need, see the "Client Access server settings" entry in the Client Access Permissions topic.
These examples configure the ExternalURL
property for each Client Access method. Each of these configuration
changes is necessary to duplicate the functionality of the
Configure External Client Access Namespace wizard.
The following example configures the
ExternalURL
property for Exchange ActiveSync virtual
directory.
Copy Code | |
---|---|
Set-ActivesyncVirtualDirectory -Identity "CAS_Server_Name\Microsoft-Server-ActiveSync (Default Web Site)" -ExternalURL Https://mail.contoso.com/Microsoft-Server-Activesync -BasicAuthentication $True |
The following example configures the
ExternalURL
property for the Outlook Web App virtual
directory.
Copy Code | |
---|---|
Set-OwaVirtualDirectory -Identity "CAS_Server_Name\OWA (Default Web Site)" -ExternalURL Https://mail.contoso.com/OWA -FormsAuthentication $True -BasicAuthentication $True |
The following example configures the
ExternalURL
property for the Outlook Address Book
virtual directory.
Copy Code | |
---|---|
Set-OABVirtualDirectory -Identity "CAS_Server_name\oab (Default Web Site)" -ExternalUrl https://mail.contoso.com/oab |
The following example configures the
ExternalURL
property for the Exchange Web Services
virtual directory.
Copy Code | |
---|---|
Set-WebServicesVirtualDirectory -Identity "CAS_Server_Name\EWS (Default Web Site)" -ExternalUrl https://mail.contoso.com/ews/exchange.asmx |
The following example configures the
ExternalURL
property for the Outlook Anywhere virtual
directory.
Copy Code | |
---|---|
Enable-OutlookAnywhere -Server CAS01 -ExternalHostname "mail.contoso.com" -ExternalAuthenticationMethod "Basic" -SSLOffloading:$False |