Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Share mailbox permission for Exchange 2007

Status
Not open for further replies.

cc929

IS-IT--Management
Nov 21, 2003
127
0
0
US
Hi,

In Exch2003, I can share mailbox permission in AD. Just give someone a permission to control my mailbox.

How can I do the same thing in Exch 2007? I can't find it.

Actually, I have a mailbox and would like to allow multipule users access. They can see their mailbox and also share mailbox in the Outlook program.

Thanks!

cc929
 
Done in the Exchange Management Shell now. Try the set-mailboxpermission command. See TechNet for more details.




Steve.

"They have the internet on computers now!" - Homer Simpson
 
Hi Stevehewitt,

Thanks!

cc929
 
The nice thing is you can add everyone to a file e.g
Add-MailboxPermission "user" –User "yourname" –AccessRights: FullAccess
Add-MailboxPermission "user" –User "yourname" –AccessRights: FullAccess
Add-MailboxPermission "user" –User "yourname" –AccessRights: FullAccess
Add-MailboxPermission "user" –User "yourname" –AccessRights: FullAccess

then copy and paste the whole lot.

I tried doing it on the store with ADpermission but gave up
 
Hi GrimR,

Thanks for your help!

Did you try to do the same thing for distribution group?
Please advice!

cc929
 
this should cover it

For a user to have the ability to manage distribution group membership they must be assigned the ‘Write Members’ active directory permission. This can be done in ADUC, but I find PowerShell much simpler.

Adding permission for a single user:

Add-ADPermission -Identity:'Group Display Name’ -User:domain\username -AccessRights ReadProperty, WriteProperty -Properties 'Member'

Adding permission for a group of users:

Add-ADPermission -Identity:'Group Display Name’ -User:'Display Name of Permissions Group’ -AccessRights ReadProperty, WriteProperty -Properties 'Member'
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top