怎样实现exchange server的autodiscover
发布网友
发布时间:2022-05-04 12:02
我来回答
共1个回答
热心网友
时间:2022-06-21 16:22
我不知道你的Exchange的版本,我将以Exchange2010为例子,配置autodiscover,首先要启用outlookanywhere这个服务, 然后设置一下虚拟目录的URL就行了;
Configure the EWS directory:
# Set-WebServicesVirtualDirectory -Identity “CAS01\EWS (Default Web Site)” -InternalUrl https://CAS01.contoso.local/EWS/Exchange.asmx -ExternalUrl https://mail.contoso.com/EWS/Exchange.asmx
Configure the OWA directory:
# Set-OwaVirtualDirectory -Identity “CAS01\Owa (Default Web Site)” -InternalUrl https://CAS01.contoso.local/owa -ExternalUrl https://mail.contoso.com/oab
Configure the OAB directory:
# Set-OABVirtualDirectory -Identity “CAS01\OAB (Default Web Site)” -InternalUrl https://CAS01.contoso.local/oab -ExternalUrl https://mail.contoso.com/oab
Configure AutodiscoverUri:
# Set-ClientAccessServer -Identity CAS01 -AutoDiscoverServiceInternalUri https://CAS01.contoso.local/autodiscover/autodiscover.xml
Test Outlook autodiscover:
# Test-OutlookWebServices -ClientAccessServer CAS01