Link to home
Start Free TrialLog in
Avatar of csehz
csehzFlag for Hungary

asked on

PowerShell/Exchange - Access to Shared mailbox but without allowing mail deletion

Dear Experts,

Could you please advise is there some method to set for a user who has access to Shared mailbox, that would be able to read mails only without deletion?

In PowerShell the syntax for giving access to a shared mailbox is the follow one, but this does not contain some read only kind of possibility:
Add-MailboxPermission "TestMailbox" -User IT\R.Smith -AccessRights fullaccess -InheritanceType all

I am aware of another syntax too:
Add-MailboxPermission -Identity "TestMailbox" -User IT\R.Smith -AccessRights ReadPermission
but this is some other permission related as tested and sure still allows the mail deletion, inspite of sounding to some read kind of permission

thanks,
ASKER CERTIFIED SOLUTION
Avatar of Simon Butler (Sembee)
Simon Butler (Sembee)
Flag of United Kingdom of Great Britain and Northern Ireland 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 csehz

ASKER

Thanks it has been tested now, it works exactly as you wrote