Apr 11 2022
04:04 AM
- last edited on
Feb 07 2023
07:18 PM
by
TechCommunityAP
Apr 11 2022
04:04 AM
- last edited on
Feb 07 2023
07:18 PM
by
TechCommunityAP
Hello,
My boss asked me to share every calendar with him so he can see every details. Is there a way to do this in the admin console or shoud I go on every post and share it manuallay ?
Thanks in advance
Yann
Apr 11 2022 09:00 AM - edited Apr 11 2022 09:02 AM
You can use PowerShell:
$calendars = Get-Mailbox -RecipientTypeDetails UserMailbox | Get-MailboxFolderStatistics -FolderScope Calendar | ? {$_.FolderType -eq "Calendar"} | select @{n="Identity"; e={$_.Identity.ToString().Replace("\",":\")}}
$calendars | % {Set-MailboxFolderPermission -Identity $_.Identity -User Email address removed -AccessRights LimitedDetails}
It's not possible to do this via the admin console, even manually. It's a client-level operation so you will need to grant yourself Full access permissions and open each mailbox in OWA/Outlook first, then open each Calendar and adjust permissions.
Apr 11 2022 11:52 PM
@VasilMichev Thanks for your answer. I have been told that it's GDPR related and that every user can choose to shaare their calendar with the boss or not. Do you know more about this ?
Apr 12 2022 08:26 AM
Apr 28 2022 04:39 AM
@yannviel You're best and i think only bet is powershell, once you've taken care of the current users, we tend to run a command during user setup to open their calendar to the whole organisation which just makes sense.
Its basically
set-MailboxFolderPermission -Identity john.doe@contoso.com:\calendar -user default -Accessrights Reviewer |