Forum Discussion
waihislam
Mar 20, 2023Copper Contributor
How to give access to calendar of all users for service account, but restrict access for mailbox
We have service account that has access to all users's calendar, we found out that it also has full access to mailbox (read, send e.t.c). How to restrict rights for mailbox ? Service account need to...
Dan_Snape
Mar 20, 2023Steel Contributor
You can use the add-mailboxfolderpermission cmdlet to give a user access to the calender only:
Add-MailboxFolderPermission -Identity <mailbox>:\Calendar -User <user requiring access> -AccessRights Editor
You'll need to check the actual "AccessRights" the user will need
Add-MailboxFolderPermission -Identity <mailbox>:\Calendar -User <user requiring access> -AccessRights Editor
You'll need to check the actual "AccessRights" the user will need