Active directory mail enabled security group

A very specific and technical question!

In Active Directory, a mail-enabled security group is a security group that has been configured to receive email messages. This allows you to send email to the group, and all members of the group will receive the email.

Here are the steps to create a mail-enabled security group in Active Directory:

Prerequisites:

Steps:

  1. Open the Active Directory Users and Computers console. You can do this by searching for "Active Directory Users and Computers" in the Start menu, or by navigating to the "Tools" menu in the Server Manager console.
  2. In the console, navigate to the domain or organizational unit where you want to create the group.
  3. Right-click on the "Groups" container and select "New Group".
  4. In the "New Group" dialog box, enter a name and description for the group.
  5. Select "Security Group" as the group type.
  6. Click "OK" to create the group.
  7. Right-click on the newly created group and select "Properties".
  8. In the "Group Properties" dialog box, click on the "Email Addresses" tab.
  9. Click on the "Add" button to add an email address to the group.
  10. Enter the email address you want to use for the group, and click "OK".
  11. Click "OK" to close the "Group Properties" dialog box.

Verification:

To verify that the group is mail-enabled, you can use the following command in the Windows PowerShell:

Get-ADGroup -Identity <Group Name> -Properties * | Select-Object -ExpandProperty EmailAddresses

Replace <Group Name> with the actual name of the group you created. This command will display the email address associated with the group.

Notes: