Is it possible to change a Distribution List into a shared mailbox?

Oz Oscroft 36 Reputation points
2023-01-20T21:26:43.9666667+00:00

I've found a few blogs saying it's possible, but very risky, so wondered if Microsoft Q&A would provide a better answer?

Microsoft Exchange Online
Microsoft Exchange Online Management
Microsoft Exchange Online Management
Microsoft Exchange Online: A Microsoft email and calendaring hosted service.Management: The act or process of organizing, handling, directing or controlling something.
4,849 questions
{count} votes

Accepted answer
  1. Santhi Swaroop Naik Bukke 595 Reputation points
    2023-01-20T21:29:14.1866667+00:00

    Yes, it is possible to change a distribution list into a shared mailbox in Microsoft Exchange.

    Here are the steps to convert a distribution list into a shared mailbox:

    1. Open the Exchange Management Shell on the Exchange server.
    2. Use the following command to disable the distribution list:
    Copy code
    Disable-DistributionGroup -Identity "DistributionListName"
    
    1. Use the following command to convert the distribution list into a shared mailbox:
    Copy code
    New-Mailbox -Shared -Name "SharedMailboxName" -DisplayName "Shared Mailbox Display Name" -Alias "SharedMailboxName" -OrganizationalUnit "OU Name"
    
    1. Use the following command to add the members of the distribution list to the shared mailbox:
    Copy code
    Add-MailboxPermission -Identity "SharedMailboxName" -User "DistributionListName" -AccessRights FullAccess
    
    1. Use the following command to remove the distribution list from the Global Address List:
    Copy code
    Remove-DistributionGroup -Identity "DistributionListName"
    

    It is important to note that before converting a distribution list into a shared mailbox, you should ensure that all the members of the distribution list have a valid mailbox, otherwise the conversion process will fail.

    Also, it's important to note that after the conversion, the distribution list will no longer exist, and the shared mailbox will take its place.

    It's recommended to test the process on a test environment before applying it to production.

    4 people found this answer helpful.

1 additional answer

Sort by: Most helpful
  1. Santhi Swaroop Naik Bukke 595 Reputation points
    2023-01-20T21:29:51.1066667+00:00

    Yes, it is possible to change a distribution list into a shared mailbox in Microsoft Exchange.

    Here are the steps to convert a distribution list into a shared mailbox:

    1. Open the Exchange Management Shell on the Exchange server.
    2. Use the following command to disable the distribution list:
    Copy code
    Disable-DistributionGroup -Identity "DistributionListName"
    
    1. Use the following command to convert the distribution list into a shared mailbox:
    Copy code
    New-Mailbox -Shared -Name "SharedMailboxName" -DisplayName "Shared Mailbox Display Name" -Alias "SharedMailboxName" -OrganizationalUnit "OU Name"
    
    1. Use the following command to add the members of the distribution list to the shared mailbox:
    Copy code
    Add-MailboxPermission -Identity "SharedMailboxName" -User "DistributionListName" -AccessRights FullAccess
    
    1. Use the following command to remove the distribution list from the Global Address List:
    Copy code
    Remove-DistributionGroup -Identity "DistributionListName"
    

    It is important to note that before converting a distribution list into a shared mailbox, you should ensure that all the members of the distribution list have a valid mailbox, otherwise the conversion process will fail.

    Also, it's important to note that after the conversion, the distribution list will no longer exist, and the shared mailbox will take its place.

    It's recommended to test the process on a test environment before applying it to production.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.