Forum Discussion
Giri12788
May 15, 2024Copper Contributor
Multiple objects with Sid S-1-5-10 were found.
When I tried to set exchange on-premise user mailbox permission, I'm getting the below error.
I have used the below script. What we missed ? This works for some objects.
$sid = "S-1-5-10";
Add-MailboxPermission -Identity "TestExchange213" -User $sid -AccessRights FullAccess -confirm:$false;
2 Replies
- Giri12788Copper Contributorhttps://techcommunity.microsoft.com/t5/exchange/unable-to-set-permission-using-ecp-error-5-multiple-objects-with/m-p/3866880
I have referred this post, but it didn't helped us.. Anyone help me out to understand the root cause of this issue. Thanks in advance.- ZIA-BUECopper Contributor
Hello,
check the AD-Attribute LinkedMasterAccount, it should be NULL.
I had the same problems, all accounts had the value S-1-5-10 (NT-Authority\Self)
You can check it with this statement:
get-user -identity %username% | ft LinkedMasterAccount
Delete the entry and after that you can remove permissions
set-user identity %username% - linkedmasteraccount $null