I work as a Senior System Engineer at a software solutions company, where we utilize the Microsoft Business Basic Plan. When booking a meeting room via a Resource Mail ID, users can view which rooms are available or occupied. However, the issue arises when some people book a room but don’t use it, preventing others from booking it. Instead of manually checking with everyone about who booked a specific room at a given time, it would be helpful if we could see the name of the person who made the booking. This way, we can directly reach out to them to confirm whether they are using the room or not.
Kindly provide a solution to address this issue or consider this as a request for improvement.
Though this question is already asked, there seems to be no detailed & understandable answer for this question.
These two commands mentioned below are the answers they have provided previous for the same question, please help where we need to execute this & succeed in this issue.
- Set-MailboxFolderPermission -Identity RoomName -User Default -AccessRights LimitedDetails
- $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}