Shared mailboxes are unexpectedly converted to user mailboxes

TankSupport 41 Reputation points
2020-09-18T22:55:36.357+00:00

We are Fully Hybrid setup but all our mailboxes are on O365. We create a remote mailbox from exchange 2010 and convert to shared from EXO.

We have noticed 10 shared mailboxes are automatically convert to user mailbox?

I just convert back to shared using EXO. But what is the fix?

Microsoft Exchange Hybrid Management
Microsoft Exchange Hybrid Management
Microsoft Exchange: Microsoft messaging and collaboration software.Hybrid Management: Organizing, handling, directing or controlling hybrid deployments.
1,981 questions
0 comments No comments
{count} votes

Accepted answer
  1. Lydia Zhou - MSFT 2,371 Reputation points Microsoft Employee
    2020-09-21T07:44:17.093+00:00

    @AselaDeCosta-5174

    This issue my be caused if the RemoteRecipientType attribute is set incorrectly. If you just convert it back to shared mailboxes, the mailboxes may revert to regular mailboxes again the next time that directory synchronization runs.
    We have to modify the RemoteRecipientType use the following command:

    Set-ADUser -Identity ((Get-Recipient PrimarySmtpAddress).samaccountname) -Replace @{msExchRemoteRecipientType=100;msExchRecipientTypeDetails=34359738368}  
    

    You can check this article for more details: Shared mailboxes are unexpectedly converted to user mailboxes after directory synchronization runs in an Exchange hybrid deployment.


    If the response is helpful, please click "Accept Answer" and upvote it.
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


1 additional answer

Sort by: Most helpful
  1. Andy David - MVP 144.4K Reputation points MVP
    2020-09-18T23:00:04.247+00:00

    In 2013 and above you can create remote mailboxes as shared:
    https://video2.skills-academy.com/en-us/powershell/module/exchange/enable-remotemailbox?view=exchange-ps

    In Exch 2010, that is not possible, so you have to convert once they are in Exchange Online. I suspect once they sync, they are set set to user mailboxes, so you have to convert to shared and thats what you are seeing.