Nov 13 2023 06:01 AM - edited Nov 13 2023 06:15 AM
We have a shared mailbox for our servicedesk.
For different locations we have created several calendars within the default calendar, like:
Servicedesk
- Amsterdam
- Londen
- Paris
- New York
When I assign users permissions to that calendar they don't become visible for the users.
I've assigned Review permissions on the root of the mailbox, root of the default agenda and Review and/or Editor permissions on the different location calendars.
We have done that with PowerShell:
Add-MailboxFolderPermission "servicedesk [at] OurDomain.com:\" -User 'user1 [at] OurDomain.com' -AccessRights Reviewer
Add-MailboxFolderPermission "servicedesk [at] OurDomain.com:\Calendar\" -User 'user1 [at] OurDomain.com' -AccessRights Reviewer
Add-MailboxFolderPermission "servicedesk [at] OurDomain.com:\Calendar\Amsterdam" -User 'user1 [at] OurDomain.com' -AccessRights editor
But no access, whatever we try, access denied.
Also in OWA with https://outlook.office.com/calendar/'servicedesk [at] OurDomain.com'/view/workweek
The only solution is when an owner enters the calendar in OWA, select the (sub)calendar, click on the three dots, select 'Sharing and permissions' and choose 'Send an sharing invitation in email'.
The user will receive an email with an invitation which can be accepted.
But isn't there any way to do this as an email administrator with PowerShell?
What is the difference in the background? I can't find it.
And another question: How do you open such a calendar in OWA or in Outlook?
You can't add anything after the default link:
https://outlook.office.com/calendar/'servicedesk [at] OurDomain.com'/view/workweek
Tried a lot of things, but the only way is for the user to accept the invitation and magically it pops up in 'Peoples calendars'
Thank you for any support on this matter.
Nov 13 2023 06:25 AM
Hi @Ron Ron,
you are having difficulties in assigning permissions to a shared mailbox calendar despite using PowerShell to grant Review and/or Editor permissions.
Following a suggestion from a https://answers.microsoft.com/en-us/outlook_com/forum/all/manage-user-permissions-on-the-calendar-of...), you can try creating two security groups with different permissions for the shared calendar.
One group can have Edit permissions, while the other can have Read-Only permissions. Here's the steps:
Creating Security Groups:
1. Log in to https://outlook.office365.com/ecp (Administrator access required).
2. Navigate to "recipients" > "groups."
3. Create a "mail-enabled security group."
4. Fill in the necessary information for the security group.
5. Add the required members.
Setting Permissions on the Shared Calendar:
1. Open the shared calendar in Outlook on the web.
2. Go to the calendar and click on "..." then choose "Sharing and permissions."
3. Enter the email of the newly created security group and click "Share."
4. Adjust the permission level to "can edit."
For your second question about opening a shared calendar, you can do so in Outlook on the web:
1. Open Outlook on the web.
2. Go to the calendar and click on "Add calendar" > "From directory."
3. Type the name of the shared calendar in the search box.
4. Click on the calendar name to add it to your view.
Please click Mark as Best Response & Like if my post helped you to solve your issue.
This will help others to find the correct solution easily. It also closes the item.
If the post was useful in other ways, please consider giving it Like.
Kindest regards,
Leon Pavesic
(LinkedIn)
Nov 13 2023 06:31 AM
Nov 14 2023 04:14 AM
SolutionIt appears that you've encountered challenges with sharing sub-calendars in a shared mailbox in Exchange, particularly when using PowerShell commands. Sharing calendars in Exchange can sometimes be tricky, and there are specific steps you need to follow. Let's address your questions and provide a solution:
Opening Shared Calendars in OWA or Outlook:
Automatic Sharing without User Interaction:
To automate the sharing process without relying on users accepting invitations, you might need to use the Set-MailboxFolderPermission cmdlet along with the -SharingPermissionFlags parameter. This parameter can be set to "Delegate" to avoid the need for user interaction.
Troubleshooting:
Remember to replace placeholders like "email address removed for privacy reasons" and "email address removed for privacy reasons" with your actual mailbox addresses. If issues persist, consider consulting the Exchange logs for more detailed error messages.
Always test such changes in a controlled environment or during non-business hours to minimize any potential impact.
If I have answered your question, please mark your post as Solved If you like my response, please give it a Like Appreciate your Kudos! Proud to contribute! |
Nov 16 2023 05:58 AM
Nov 14 2023 04:14 AM
SolutionIt appears that you've encountered challenges with sharing sub-calendars in a shared mailbox in Exchange, particularly when using PowerShell commands. Sharing calendars in Exchange can sometimes be tricky, and there are specific steps you need to follow. Let's address your questions and provide a solution:
Opening Shared Calendars in OWA or Outlook:
Automatic Sharing without User Interaction:
To automate the sharing process without relying on users accepting invitations, you might need to use the Set-MailboxFolderPermission cmdlet along with the -SharingPermissionFlags parameter. This parameter can be set to "Delegate" to avoid the need for user interaction.
Troubleshooting:
Remember to replace placeholders like "email address removed for privacy reasons" and "email address removed for privacy reasons" with your actual mailbox addresses. If issues persist, consider consulting the Exchange logs for more detailed error messages.
Always test such changes in a controlled environment or during non-business hours to minimize any potential impact.
If I have answered your question, please mark your post as Solved If you like my response, please give it a Like Appreciate your Kudos! Proud to contribute! |