Forum Discussion
hug0live
Mar 19, 2024Copper Contributor
Room mailboxes
Hi,
I have to create room mailboxes, so far no problem. However, some rooms can only be reserved by a limited group of people. How to make them visible and give the possibility of booking only for this group ?
Thanks for your help.
3 Replies
Sort By
- JannepCopper ContributorWe do it via the set-mailbox and acceptonlymessagesfrom*
[-AcceptMessagesOnlyFrom <MultiValuedProperty>]
[-AcceptMessagesOnlyFromDLMembers <MultiValuedProperty>]
Then the room wont accept invites from users who are not in that distribution list.- hug0liveCopper Contributor
Thank you for your answers. Both solutions actually work. I chose to use:
$group = New-DistributionGroup "Room 221 Booking Allowed" Update-DistributionGroupMember -Identity $group.Identity -Members email address removed for privacy reasons,email address removed for privacy reasons -BypassSecurityGroupManagerCheck:$true Set-CalendarProcessing -Identity "Room 221" -AutomateProcessing AutoAccept -BookInPolicy $group.Identity -AllBookInPolicy $false
- Configure the Booking delegate settings on the room. In the EAC, this is done by selecting the room mailbox > Booking > Booking delegate settings > Manage delegate settings. If using PowerShell, via the Set-CalendarProcessing cmdlet: https://learn.microsoft.com/en-us/powershell/module/exchange/set-calendarprocessing?view=exchange-ps