locked
Add calendar shares to all office 365 user subscriptions RRS feed

  • Question

  • I am working on setting up all our Office 365 Midsize Business subscription user calendars to be shared / viewable by everyone else.  I have 61 users and everyone will be able to see the calendars of the other users.  I have a suggested PowerShell script that would add the permission Reviewer for the calendar for each of our "subscription" users:

    foreach($user in (Get-Mailbox -RecipientTypeDetails UserMailbox)) {

    $cal = $user.alias+":\Calendar"

    Add-MailboxFolderPermission -Identity $cal -User viewer@domain.com -AccessRights reviewer

    }

    I have to change viewer@domain.com  for each user account I need to add the permission.  Is t here n easier way to go through all my "subscription" user lists??

    Monday, November 11, 2013 1:56 PM

Answers

All replies