Linking Certain People's Calendars To Many People's Accounts

Copper Contributor

Hello,

 

How can we add any person's calendars to the calendars of specific users in Office 365?

How can we add and subtract in bulk ?

 

Thanks.

1 Reply

Hi @_capan_,

 

There are a couple of ways to achieve what you're looking for. Depending on your use case, you can either make the calendars public (Default is AvailabilityOnly, you can change this to LimitedDetails instead) and whoever interested can add these calendars manually to their Outlook (as an additional calendar). Or, as you've asked, you can grant the permission in bulk using the Add-MailboxFolderPermission cmdlet.

 

Ex: Add-MailboxFolderPermission -Identity ayla@contoso.com:\Calendar -User laura@contoso.com -AccessRights Reviewer

[This will grant Laura reviewer permission over Ayla's calendar] 

You can run this against each account that you want to grant the permission to. Replace "Add" with "remove" if you wish to remove a permission that was granted (suffix the cmdlet with "-Confirm: $False" if you don't want to be prompted each time when applying the permission).