有段时间没写东西了。今天我们有的就是根据通讯录对策,给不同的租户分配相应的通讯录,包括离线详细通讯录等。
首先,必须安装通讯簿策略路由助手,这可以根据Exchange命令行管理程序来执行:
install-transportAgent-Name"ABPRoutingAgent"-TransportAgentFactory"Microsoft。Exchange.transport.agent.AddressBookPolicyRoutingAgent.addessbookpolicyRoutingAgentFactory"-assemblypath"C:\ProgramFiles\Microsoft\ExchangeServer\V15\transportroles\Agents\AddressBookPolicyRoutingAgent\Microsoft。exchange.transport.agent.addressbookpolicyroutingagent.dll。
然后,您键入指令以打开您不久前安装的地址簿策略路由助手:
Enable-TransportAgent"ABP路由代理"
以后可以根据Get-TransportAgent命令查询当前打开的传输助手。
接下来,您必须打开传输设备的地址簿路由器:
set-transportconfig-addressbookpolicyroutingenabled$True
然后大家一定要提前为不同的租户准备好不同的通讯录详细地址列表:(如果这些都提前准备好了,就不用再设置了)
new-offlineaddressbook-Name"tenant1OAB"-addresslists"\tenant1–GAL"-virtualdirectory"EXCH\OAB(默认网站)"
new-offlineaddressbook-Name"tenant2OAB"-addresslists"\tenant2–GAL"-virtualdirectory"EXCH\OAB(默认网站)"
new-offlineaddressbook-Name"tenant3OAB"-addresslists"\tenant3–GAL"-virtualdirectory"EXCH\OAB(默认网站)"
然后根据新创建的通讯录详细地址策略,将详细地址列表分配给不同的租户,让不同的租户自行使用匹配的通讯录策略,然后显示不同信息的通讯录,免费下载离线详细地址列表。
new-addressbookpolicy-name"Tenant1通讯簿对策"-addresslists"\Tenant1-所有客户"-脱机通讯簿"Tenant1OAB"-全局地址列表"\Tenant1–gal"-房间列表"\Tenant1-所有会议厅"
new-AddressBookpolicy-name"Tenant2通讯簿对策"-Addresslists"\Tenant2-所有客户"-脱机通讯簿"Tenant2OAB"-全局地址列表"\Tenant2-gal"-房间列表"\Tenant2-所有会议厅"
new-AddressBookpolicy-name"Tenant3通讯簿对策"-Addresslists"\Tenant3-所有客户"-脱机通讯簿"Tenant3OAB"-全局地址列表"\Tenant3-gal"-房间列表"\Tenant3-所有会议厅"
这里,通讯录对策的内容就完成了。其实就是把不同租户的通讯录打包,然后分配给一个租户,作为对策。毕竟在多租户的自然环境中,会有很多不同的详细地址列表、会议厅列表、全局列表等。ABP方法的应用非常简单方便。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)