[Migrated from MSDN Exchange Dev] Distribution group Sturcture

Yuki Sun-MSFT 41,016 Reputation points
2020-12-07T05:56:26.167+00:00

[Note] This thread was originally posted on MSDN. As the MSDN Exchange Dev forum mainly focuses on Exchange developer questions and the TechNet Exchange forums for Non-developer Exchange have been locked down and transitioned to Microsoft Q&A for support, we manually migrated this one to Microsoft Q&A platform to continue the discussion.

[MSDN thread link] Distribution group Sturcture

[Original post]
I want to DL structure to be more organised in my org ..as of now We have 7000 DLs
Goal is to have standard naming convention
Need to have Nested DLs, so it can be added in other DLs

What approach i should keep eg: create sitewise DLs ?????

any help will be highly appreciated

Exchange Server Management
Exchange Server Management
Exchange Server: A family of Microsoft client/server messaging and collaboration software.Management: The act or process of organizing, handling, directing or controlling something.
7,503 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Yuki Sun-MSFT 41,016 Reputation points
    2020-12-07T06:28:25.86+00:00

    Hi,

    Goal is to have standard naming convention

    For the currently existing distribution lists, you may consider renaming their display names using powershell script:

    1. Prepare a CSV file which includes both the old and new display names of the distribution lists, for example:
      45624-1.png
    2. Bulk rename the display names using the powershell command below: $Groups = Import-CSV Sample.csv
      ForEach($Group in $groups) {Set-DistributionGroup -Identity $Group.OldName -DisplayName $Group.Newname}
      After that, you can create a distribution group naming policy to manage the names of new distribution groups created by users or by administrators via EMS (naming policy isn't applied to distribution group created using EAC). For more details, see Create a distribution group naming policy.

    Regarding your concern about adding the DLs into the other DLs, based on my test, this is by default supported.


    If an Answer 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.

    0 comments No comments