Delegate
We are trying to use PowerShell to set the delegation of a user’s calendar to an other user’s account.
Add-MailboxFolderPermission -Identity [EMAIL_ADDRESS1]:Calendar -User [EMAIL_ADDRESS2] -AccessRights Editor -SharingPermissionFlags Delegate,CanViewPrivateItems
We ran the script, however, it only set the delegation to “Delegate Only” and we wanted to set it to “Both my delegate and me” so both people can receive and respond to the meeting invite.
Any way to achieve that?
We are trying to use PowerShell to set the delegation of a user’s calendar to an other user’s account. Add-MailboxFolderPermission -Identity [EMAIL_ADDRESS1]:Calendar -User [EMAIL_ADDRESS2] -AccessRights Editor -SharingPermissionFlags Delegate,CanViewPrivateItems We ran the script, however, it only set the delegation to “Delegate Only” and we wanted to set it to “Both my delegate and me” so both people can receive and respond to the meeting invite. Any way to achieve that? Read More