How to display information of person who booked room on Outlook Calendar?

Syed Harith Zaki 190 Reputation points
2024-09-19T03:21:00.64+00:00

Hello, I am experiencing this issue of not being able to view the information of the person who booked a room using Outlook Calendar. It is only stated as 'Busy'. However, my colleague is able to see the name of the person who booked the room. What can I do so that everyone is able to see the name of the person who booked the room? Is it a permissions issue and if yes, how can I modify the settings so that I provide this with the least privilege? I have shared screenshots showing the different views of the calendar from my and my colleague's point of view. Thank you for your assistance.

User's image

User's image

Exchange Online
Exchange Online
A cloud-based service included in Microsoft 365, delivering scalable messaging and collaboration features with simplified management and automatic updates.
Outlook | Windows | Classic Outlook for Windows | For business
0 comments No comments
{count} votes

Answer accepted by question author
  1. Vasil Michev 124.4K Reputation points MVP Volunteer Moderator
    2024-09-19T06:19:44.6666667+00:00

    This is controlled by the permissions on the Calendar folder. Namely, the user will need to have "LimitedDetails" or equivalent permission in order to be able to see this information. If you want to ensure that all users in the tenant will be able to see it, you can use the following:

    Set-MailboxFolderPermission -Identity RoomName -User Default -AccessRights LimitedDetails
    

    And if you want to configure this on all rooms, use this:

    $calendars = Get-Mailbox -RecipientTypeDetails RoomMailbox | Get-MailboxFolderStatistics -FolderScope Calendar | ? {$_.FolderType -eq "Calendar"} | select @{n="Identity"; e={$_.Identity.ToString().Replace("\",":\")}}
    $calendars | % {Set-MailboxFolderPermission -Identity $_.Identity -User Default -AccessRights LimitedDetails} 
    
    3 people found this answer helpful.

1 additional answer

Sort by: Most helpful
  1. felix-ht 5 Reputation points
    2025-02-05T15:14:01.17+00:00

    Its enough to give Limited Access just to the calendar not to the full mailbox.

     Set-MailboxFolderPermission -Identity "******@domain.com:\Calendar" -User Default -AccessRights LimitedDetails

    1 person found this answer helpful.
    0 comments No comments

Your answer

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