在Exchange 2003与Exchange 2010共存的情况下,有时我们发现虽然Exchange server 2010已经成功安装,但发现它们之间却没有路由组连接器,如下图
在此种情况下,我们需要手工通过exchange 2010 Powershell来添加exchange 2003和exchange 2010的双向路由组连接器,命令格式如下:
New-RoutingGroupConnector -Name <String> -SourceTransportServers <MultiValuedProperty> -TargetTransportServers <MultiValuedProperty> [-BiDirectional <$true | $false>] [-Confirm [<SwitchParameter>]] [-Cost <Int32>] [-DomainController <Fqdn>] [-PublicFolderReferralsEnabled <$true | $false>] [-WhatIf [<SwitchParameter>]]
例如:我们的Exchange server 2010 FQDN名称是ex2010.contoso.com, Exchange 2003 FQDN名称是ex2003.contoso.com
操作如下:
New-RoutingGroupConnector -Name EX10-EX03 -SourceTransportServers ex2010.contoso.com -TargetTransportServers ex2003.contoso.com
New-RoutingGroupConnector -Name EX03-EX10 -SourceTransportServers ex2003.contoso.com -TargetTransportServers ex2010.contoso.com
即可,后面的参数可以忽略,不是必须的,如果有多个路由组,你想走指定的路由,可以带上Cost参数。
如下图:
本文转自 zhou_ping 51CTO博客,原文链接:http://blog.51cto.com/yuntcloud/1421157,如需转载请自行联系原作者