SOLVED

outlook multiple mailbox stores listed

Brass Contributor

I have a user that is showing mailbox accounts no matter creating a new Outlook profiles with just a single account.  I used MFCMAPI and took a look.  There are two stores listed as false for the "Default Store".  OWA shows normal.

How do I remove or delete this listing for this one user.

I checked for delegates and permissions. Nonexistent.

1 Reply
best response confirmed by Fixxser2 (Brass Contributor)
Solution
it was automapping from the other two accounts. What I did to clear this up was to run the following PowerShell commands:
Add-MailboxPermission -Identity <shared mailbox alias> -User <your mailbox alias> -AccessRights FullAccess -InheritanceType All -Automapping $false
1 best response

Accepted Solutions
best response confirmed by Fixxser2 (Brass Contributor)
Solution
it was automapping from the other two accounts. What I did to clear this up was to run the following PowerShell commands:
Add-MailboxPermission -Identity <shared mailbox alias> -User <your mailbox alias> -AccessRights FullAccess -InheritanceType All -Automapping $false

View solution in original post