0

When I try to go to the properties of another user's calendar it says that I do not have the proper permissions. I'm trying to configure permissions for a remote user's calendar so that their manager can view it.

Thanks in advance.

Windows Ninja
  • 2,546
  • 18
  • 46
  • 70

1 Answers1

0

You can use the powershell script Add-MailboxFolderPermissions e.g.

Add-MailboxFolderPermission "DOMAIN\USERX:\Calendar" -User "DOMAIN\MANAGER" -AccessRights Reviewer

From the help contents, The AccessRights parameter specifies the rights needed to perform the operation. Valid values include:

  • FullAccess
  • SendAs
  • ExternalAccount
  • DeleteItem
  • ReadPermission
  • ChangePermission
  • ChangeOwner
Phil
  • 3,138
  • 1
  • 21
  • 27