Link to home
Start Free TrialLog in
Avatar of Ron Shorts
Ron ShortsFlag for United States of America

asked on

Exchange 2010 shared mailbox permissions

Is there a way to give users permissions to a shared mailbox giving them the ability to READ and MOVE items to folders, but not delete?

Thanks
ASKER CERTIFIED SOLUTION
Avatar of Amit Kumar
Amit Kumar
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Amit
Once you provide move permission, user can delete also. I don't think you can achieve this with Exchange
Hello,

I know a way for the Read Only Permission, deletion won't work but moving maybe. You can do that only with PowerShell.

1- Give the right to see the Folders on top level : Add-MailboxFolderPermission “SharedMailboxName:\” -User ''Username''-AccessRights FolderVisible

2- Then give Read Permissions with : Add-MailboxFolderPermission “SharedMailboxName:\Inbox” -User "UserName" -AccessRights Reviewer

Let me know if it's fine with that.