Managing Client Access Servers
In this section, we will configure the Client Access Servers for some of the protocols that you have learned earlier in the chapter.
The following command will set the internal hostname, client authentication method, require SSL, and authentication methods for Outlook Anywhere:
Get-OutlookAnywhere | Set-OutlookAnywhere -InternalHostname "Exchange01.contoso.com" -InternalClientAuthenticationMethod Ntlm -InternalClientsRequireSsl $true -IISAuthenticationMethods Negotiate,NTLM,Basic
Similarly, OWA, Exchange ActiveSync
, Exchange Web services, and OAB can be configured using the following commands:
Set-OwaVirtualDirectory -Identity "Exchange01\owa (Default Web Site)" -ExternalUrl https://mail.contoso.com/ow Set-ActiveSyncVirtualDirectory -Identity "Exchange01\Microsoft-Server-ActiveSync (Default Web Site)" -ExternalUrl "https://mail.contoso.com/Microsoft-Server-ActiveSync" Set-WebServicesVirtualDirectory -Identity "Exchange01\EWS (Default Web Site)" -ExternalUrl...