Limit Exchange Resources Users can see.

Christopher Gillespie 6 Reputation points
2022-01-13T15:02:11.73+00:00

I have an O365 Exchange environment for a diocese. All of our parishes are on a single tenant and I want to limit what Exchange Resources the users can see in each parish to the resources for that parish.

Exchange | Exchange Server | Management
{count} votes

1 answer

Sort by: Most helpful
  1. Manu Philip 20,206 Reputation points MVP Volunteer Moderator
    2022-01-13T15:37:57.713+00:00

    Are you using on-premises Exchange Server or Office 365?
    You can establish an Address Book segregation among each parishes within the diocese so that users in one parish can't see/limited visibility of the resources/addresses of other parishes. Address Book Policies (ABP) will help to achieve this. Each ABP will have a minimum of one Global Address List, one Offline Address Book, one address list, and one room list
    An example, PS script as follows to separate conference rooms of parish1 and 2 as follows

    New-AddressList -Name "Parish1 Rooms" -RecipientFilter {(Company -eq "Parish1 ")-and (RecipientDisplayType -eq 'ConferenceRoomMailbox')}  
    New-AddressList -Name "Parish2  Rooms" -RecipientFilter {(Company -eq "Parish2")-and (RecipientDisplayType -eq 'ConferenceRoomMailbox')}  
    

    Similar way, you can segregate different resources and assign he visibility through ABP
    Here is a reference shows the address book segregation details in O365
    https://learn.microsoft.com/en-us/exchange/address-books/address-book-policies/address-book-policies

    ----------

    If the Answer is helpful, please click "Accept Answer" and upvote it

    1 person found this answer helpful.

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.