Scenario: You are attempting to remove the full access permission on a mailbox by running the remove-mailboxpermission command:
remove-mailboxpermission TestUser -user steve -accessrights Fullaccess -confirm:$False
But you are receiving this error :
Warning= “Can’t remove the access control entry on the object “CN=TestUser,DC=xyz,DC=com” for account “xyzsteve” because the ACE doesn’t exist on the object.”
Clearly the permission exists when you check with the get-mailboxpermission.
Solution: Append the -deny:$True to the end of the powershell command and try it again.
remove-mailboxpermission TestUser -user steve -accessrights Fullaccess -confirm:$False -deny:$True
Brilliant! Worked well for me when all other attempts and articles failed…
LikeLike