Forum Discussion
MBender
Nov 13, 2019Brass Contributor
Exchange rooms - make organizer visible for everyone
We have but 4 rooms in our small organization, but people are complaining they can't see who booked the room when scheduling (they only see when the room is busy). After some digging, it seems th...
- Nov 13, 2019OK, I managed to figure it out.
The actual command is Set-MailboxFolderPermission (not Set-MailboxPermission), and then the -Identity parameter needs to denote the folder: in this case, the calendar. As such, the command should look like this:
Set-MailboxFolderPermission -Identity room1@foobar.com:\Calendar -User Default -AccessRights LimitedDetails
In this case the user "Default" does, in fact, exist. So the command doesn't need to be ran for each user in the system, only for each room.
MBender
Nov 13, 2019Brass Contributor
OK, I managed to figure it out.
The actual command is Set-MailboxFolderPermission (not Set-MailboxPermission), and then the -Identity parameter needs to denote the folder: in this case, the calendar. As such, the command should look like this:
Set-MailboxFolderPermission -Identity room1@foobar.com:\Calendar -User Default -AccessRights LimitedDetails
In this case the user "Default" does, in fact, exist. So the command doesn't need to be ran for each user in the system, only for each room.
The actual command is Set-MailboxFolderPermission (not Set-MailboxPermission), and then the -Identity parameter needs to denote the folder: in this case, the calendar. As such, the command should look like this:
Set-MailboxFolderPermission -Identity room1@foobar.com:\Calendar -User Default -AccessRights LimitedDetails
In this case the user "Default" does, in fact, exist. So the command doesn't need to be ran for each user in the system, only for each room.