Need steps on how to convert a global security group to a mail enabled security Group in active directory

J-3804 1,601 Reputation points
2021-09-16T21:54:11.52+00:00

Hi team,

I would like to convert global Security Group to a mail-enabled security group in active directory. I know that we just need to change it from Global to Universal. But do you have a proper way to add the email address in active directory and sync with O365?

Thank you for your help

Exchange | Hybrid management
Microsoft Security | Microsoft Entra | Microsoft Entra ID
0 comments No comments
{count} votes

Accepted answer
  1. KyleXu-MSFT 26,396 Reputation points
    2021-09-17T02:34:49.687+00:00

    @J-3804

    You can use command below to cover this group from a Global group to a Universal group:

    Get-AdGroup "NewGroup" | Set-ADGroup -GroupScope Universal -GroupCategory Security  
    

    You can use command below to enable email for this group(You will could see this security group from Exchange on-premise):

    Enable-DistributionGroup newgroup  
    

    If the domain name has verified on your Office 365, this group will be sync to Azure AD with AAD Connect.


    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. J-3804 1,601 Reputation points
    2021-09-19T02:05:46.84+00:00

    Thanks for your help

    0 comments No comments

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.