Link to home
Start Free TrialLog in
Avatar of nick_kessler
nick_kessler

asked on

Removing Full Access Permission on mailbox ex 2010

Like most, we've mograted from Exchange 2003 to 2010. We want to remove some of the older permissions that were set on users mailboxes for manager access, etc.

When I go into EMC and try to remove the permission I get the error "Can't remove the access control entry on the object...because the ACE doen't exist on the object."

Assuming there is a PowerShell command to remove this, can someone assist. I am very tentative in PowerShell, so as much assistance as possible would be greatly appreciated.

The user mailbox is gaile and the user that has permission that needs to be removed is zack.
Avatar of Preston Grant
Preston Grant
Flag of United States of America image

Try this:

Remove-MailboxPermission -Identity "gaile@yourdomain.local" -User
"zack@yourdomain.local" -AccessRights FullAccess -InheritanceType All
Avatar of nick_kessler
nick_kessler

ASKER

I ran that command in PowerShell and got back the same error. Cannot remove because the ACE doesn't exist on the object.
Did you do a domain migration at some point? If so use the old domain when referencing zack, so -user "OLDDOMAIN\zack"
ASKER CERTIFIED SOLUTION
Avatar of Rajitha Chimmani
Rajitha Chimmani
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