Outlook Room Finder 无法与通讯簿策略配合使用

Outlook Room Finder 无法与通讯簿策略配合使用

背景 :

我有一个多租户 Exchange 2013 环境,它是通过使用地址簿策略 (ABP) 对每个租户进行细分而构建的。这种方法效果很好,因为每个租户只能看到其组织的用户、群组、房间和联系人 - 正如预期的那样。

不起作用的是 Outlook 2010/13 内置的房间查找器功能。

房间查找器由已选中 -roomlist 参数的特殊通讯组填充。该通讯组的成员(房间邮箱)显示在 Outlook 中的房间查找器窗格中。

让我进一步解释一下:

如果用户 A 不在 ABP 中,房间查找器将显示整个环境内的房间查找器中的所有房间列表(具有 -roomlist 属性的分发组)。

如果用户 A 在 ABP 中,则他们无法在房间查找器中看到任何房间/房间列表但可以在地址簿中看到他们,并且在他们设置会议时按下房间按钮时也可以看到他们。(即地址簿策略按预期运行)

用于创建每个租户的 cmdlet 是:New-GlobalAddressList

New-GlobalAddressList-名称“租户名称-GAL”-ConditionalCustomAttribute15“ABC”-IncludedRecipients MailboxUsers-RecipientContainer“路径/到/OU

New-AddressList -Name“租户名称 - 所有房间”-RecipientFilter“(CustomAttribute15 -eq'ABC')-and(RecipientDisplayType -eq'ConferenceRoomMailbox')”-RecipientContainer“Path/to/OU

New-AddressList -Name“租户名称 - 所有用户”-RecipientFilter“(CustomAttribute15 -eq‘ABC’) -and(ObjectClass -eq‘用户’)”-RecipientContainer“路径/到/OU

New-AddressList -Name“租户名称 - 所有联系人”-RecipientFilter“(CustomAttribute15 -eq'ABC)-and(ObjectClass -eq'Contact')”-RecipientContainer“Path/to/OU

New-AddressList -Name“租户名称 - 所有组”-RecipientFilter“(CustomAttribute15 -eq‘ABC’) -and(ObjectClass -eq‘Group’)”-RecipientContainer“Path/to/OU

New-OfflineAddressBook -名称“租户名称”-AddressLists“租户名称 - GAL”

New-AddressBookPolicy -Name“租户名称”-AddressLists“租户名称 - 所有用户”、“租户名称 - 所有联系人”、“租户名称 - 所有组”-GlobalAddressList“租户名称 - GAL”-OfflineAddressBook“租户名称”-RoomList“租户名称 - 所有房间”

我尝试将 CustomAttribute15 设置为与示例 (ABC) 中使用的租户代码相同,认为 ABP 将匹配以下条件:

New-AddressList -Name“租户名称 - 所有组”-RecipientFilter“(CustomAttribute15 -eq‘ABC’) -and(ObjectClass -eq‘Group’)”-RecipientContainer“Path/to/OU

相关内容