you only need to do the following
Add-MailboxPermission OWNER -AccessRights FullAccess -User DOMAIN\TRUSTEE
Main Topics
Browse All TopicsHello all...
I'll be honest, I didn't do too much searching on this...sorry :)
Org Setup - Exch 2K7 SP1 with current Rollup; Outlook 2K3 with current SP (3, I believe).
I'm simpling needing the shell command to grant a user (one of my managers) access to another user's mailbox (one of her subordinates). I have a script that I used for myself, but that grants me access to ALL organization user mailboxes. I obviously don't want to give her that. I guess this is actually a delegation, but I want her to have access to this subordinate's whole mailbox, not just the Inbox/Calendar. Below is the script I ran previously for myself. I assume what I'm needing is a modification of this...can someone assist me?
Get-Mailbox | Add-MailboxPermission -AccessRights Fullaccess -User john.doe
Thanks in advance.
Regards,
~coolsport00
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Hi all...
I think I actually found what I was needing. I was just being sooooooo lazy! I used this site:
http://technet.microsoft.c
...which gave me this cmdlet:
Add-MailboxPermission "Mailbox" -User "Trusted User" -AccessRights FullAccess,
which translates into:
Add-MailboxPermission "subordinate name" -User "manager name" -AccessRights FullAcces
I think your cmd is bit more lengthy Shaun?
Thanks all for the QUICK responses! Closing this with points assigned.
Regards,
~coolsport00
I was being lazy too, I just amended what you had written!
If you ever need to run this for multiple users \ mailboxes for any reason see my blog I wrote recently on th subject:
http://exchangeshell.wordp
Shaun
Business Accounts
Answer for Membership
by: shauncroucherPosted on 2009-11-03 at 06:23:18ID: 25729176
Yes,
Get-Mailbox <NAME OF MAILBOX TO ADD THE FULL ACCESS RIGHT TO> | Add-MailboxPermission -AccessRights Fullaccess -User <NAME OF USER TO BE GIVEN FULL ACCESS RIGHTS>
ie:
Get-Mailbox DIRECTOR | Add-MailboxPermission -AccessRights Fullaccess -User DirectorPA
Shaun