Link to home
Start Free TrialLog in
Avatar of dakkonblackblade
dakkonblackbladeFlag for United States of America

asked on

Adding Permissions to a Mailbox in Exchange 2007 for Group Mailbox

I have created a mailbox called IT Help.  I want to be able to have the IT staff add this mailbox to their existing Outlook client so that issues can be looked at by everyone.  The issue I am having is that all users that access this mailbox should have all access to move, change and send as permissions but no one but the administrator have access to delete messages.  I have been able to setup the users through powershell using Full access, which obviously works for testing access.  The problem I have now is that when I remove FullAccess, and leave, send-as, readpermission, changeowner, and changepermission, the user can no longer open the mailbox for viewing.  What I am I missing?  Thanks in advance for any assistance.
SOLUTION
Avatar of Mestha
Mestha
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
ASKER CERTIFIED SOLUTION
Avatar of GusGallows
GusGallows
Flag of United States of America 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
Let's try this with the code snippet so it doesn't remove all my single quotes:
Add-ADPermission IT Help -User:IT Staff -ExtendedRights:Send-As -AccessRights:ReadProperty, WriteProperty -Properties:'Personal Information

Open in new window

Well heck. OK, those tab characters are single quotes. :P
*Sigh* They are double-quotes. I'm going back to bed.
Avatar of dakkonblackblade

ASKER

Thank you all.  I appreciate the feedback.