Creation of groups - number added

irena kon 1 Reputation point
2021-06-30T15:06:17.9+00:00

Hello,
I have an Exchange 2016 environment.
Creating a Destitution\Security group from the ECP, creates the group's SAMAccountName with a random number:

Display Name: Test Group
CN: Domain.com/Groups/Test Group
SamAccountName: Test Group-1-396684025

I know the reason for this problem is because it is generating the SAMAccountName since that spot was "blank".
I have found all the scripts that can "fix" this issue by CLI solutions.

I couldn't find a root solution to this problem.
I have a problem - our Helpdesk are the one that creates these groups, and they cannot use the CLI, only from the ECP.

Is there really no root solution (CU or some KB) for this problem?

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,335 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Yuki Sun-MSFT 40,781 Reputation points
    2021-07-01T03:00:38.05+00:00

    Hi @irena kon

    I know the reason for this problem is because it is generating the SAMAccountName since that spot was "blank".

    Exactly. There isn't a field for SamAccountName in ECP when creating a group, so a value which includes a random number will be automatically generated by AD.

    Regarding your concern about a "root solution (CU or some KB)", I am currenly using Exchange 2016 CU20 in my test lab and the behavior is still the same on my end. CU21 has been released a few days a ago, but the release note doesn't mention anything about the SAMAccountName field.

    I have a problem - our Helpdesk are the one that creates these groups, and they cannot use the CLI, only from the ECP.

    As you have mentioned, usually it's suggested to use Exchange powershell to specify a value for SAMAccountName, but considering that your Helpdesk cannot use command line to manage groups, another workaround I can think of is to modify the SAMAccountName value using ADUC(Active Directory Users and Computers), supposing they can use it.

    1. Open ADUC, navigate to Users, find the group which need to be modified.
    2. Right click the group, choose Properties
      110659-1.png
    3. Choose Attribure Editor, press S to quickly locate the attribute "sAMAccountName", change the value from random number to what you want, press OK, Apply:
      110831-2.png
      As displayed in the output of the powershell, the sAMAccountName has been changed:
      110804-3.png

    Update:
    In case manually editing the SamAccountName via Active Directory Users and Computers is not an acceptable option for you either, it's suggested to create a scheduled task to run the Exchange powershell, updating the SamAccountNames for all distribution groups automatically:

    1.Prepare the Exchange powershell script file(.ps1) which includes the command below:

    Get-DistributionGroup | foreach {Set-DistributionGroup $_.name -SamAccountName $_.name}  
    

    2.Open the Task Scheduler, click Create Basic Task...
    (Note: Make sure the machine has Exchange PowerShell Management Tools installed already.)
    3.Give the task a name, let's say "UpdateSamAccountName", set the Trigger, for example, Daily, start at 10 AM:
    111965-4.png
    4.Click Next, choose Start a program, Next. On the subsection, Enter:
    In the Program/Script, type C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
    In the Add Arguments (Optional) ,type below (Replace "C:\Update_SamAccountName.ps1" with your script path.)

    -command ". 'c:\Program Files\Microsoft\Exchange Server\V15\bin\RemoteExchange.ps1'; Connect-ExchangeServer -auto; C:\Update_SamAccountName.ps1  
    

    111925-5.png


    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.


  2. Maayana 1 Reputation point
    2021-07-05T17:32:47.3+00:00

    Hi, @Yuki Sun-MSFT

    Thank you for answering.

    I know the option of doing a manual deletion in AD, this is what we're doing today.
    unfortunately I can’t trust the HelpDesk team to do this and have no way to ensure it was done.
    I'm looking for a solution without manual action.

    Is this the last option for us?