Adds a resource mailbox to the specified room address list

Tony Mu 241 Reputation points
2023-09-13T03:44:13.7+00:00

Hi

In Exchange 2016, different address policies and room address lists are created for each OU organizational unit, how to add room resource mailboxes to the room address list of specified OU, and each mailbox can only see its own room mailbox in the Outlook client.Thanks

Exchange Server
Exchange Server
A family of Microsoft client/server messaging and collaboration software.
1,371 questions
Exchange Server Management
Exchange Server Management
Exchange Server: A family of Microsoft client/server messaging and collaboration software.Management: The act or process of organizing, handling, directing or controlling something.
7,708 questions
Microsoft Exchange
Microsoft Exchange
Microsoft messaging and collaboration software.
596 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Aholic Liang-MSFT 13,861 Reputation points Microsoft Vendor
    2023-09-14T09:01:29.5933333+00:00

    Hi @ Tony Mu,

    how to add room resource mailboxes to the room address list of specified OU

    According to the guided steps in the official documentation, we can set the recipient filter conditions of the meeting room address list to custom parameters.

    For example, create a room address list for the sales group OU, and set the recipient filter to CustomAttribute15 -eq 'Sales'.

    New-AddressList -Name AL_Sales_Rooms -RecipientFilter " (CustomAttribute15 -eq 'Sales') -and (RecipientDisplayType -eq 'ConferenceRoomMailbox') -or (RecipientDisplayType -eq 'SyncedConferenceRoomMailbox')"
    

    And set the CustomAttribute15 property of the room mailbox used for the sales group to 'Sales'.

    Set-mailbox -identity “sale room” -CustomAttribute15 “Sales“
    

    User's image

    In addition, for detailed steps on deploying ABP, please refer to the detailed scenario in this link:

    Scenario Deploying address book policies in Exchange Server | Microsoft Learn


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.