Exchange 2019,修改AddressList

Exchange 2019,修改AddressList

AD 中儲存的資訊(例如 IP 電話、手機等)不會顯示在使用者 Outlook> 聯絡人中。據我了解,我必須使用: Set-AddressList -Identity "All Users List" -InincludedRecipients AllRecipients -ConditionalCustomAttribute1 "ipPhone"

但我想更清楚地了解我所做的一切是否正確以及如何添加其他參數。

謝謝。

答案1

Outlook中的聯絡人是Outlook的功能,與Exchange無關,這表示它不像Exchange那樣直接從AD取得資訊。

如果您想查看Exchange使用者的信息,您應該使用地址簿。

(您可以將通訊錄中的使用者新增至 Outlook 聯絡人)

例子: 在此輸入影像描述

Set-AddressList -Identity "All Users List" -IncludedRecipients AllRecipients -ConditionalCustomAttribute1 "ipPhone"

此 cmdlet 建立位址清單並新增自訂屬性 1 中具有「ipPhone」值的使用者。

這與你的要求無關。

相關內容