EEEKB article--Go to Exchange Online Service 16 in Office 365 How to manage mail-enabled security groups

Source: Internet
Author: User
Tags one mail

Mail-enabled security groups and distribution groups differ in the ability to assign users permissions to SharePoint online through security groups. Therefore, only the mail-enabled security groups that you need to use for a subset of users by assigning the same SharePoint Online permissions and receiving bulk messages. Otherwise, if only users receive mass mailings, it is recommended that you still use distribution groups.
I. Create a mail-enabled security group
Although you can create a security group from the Office 365 Admin Center, the security groups that you create do not mail-enable. To create a mail-enabled security group, you need to do so through the Exchange Admin Center or PowerShell.
1. Use the Exchange Admin Center to create a mail-enabled security group
in the Exchange Admin Center window, click Recipients in the navigation bar, select groups in the right window navigation bar, and click the Add "+" button , select "Security Group" from the drop-down menu.
  650) this.width=650; "title=" 01.png "alt=" wkiol1dzc66hkngxaacobofhagi424.png-wh_50 "src=" http:/ S3.51cto.com/wyfs02/m00/83/6f/wkiol1dzc66hkngxaacobofhagi424.png-wh_500x0-wm_3-wmp_4-s_2428286447.png "/>

In the new Security Group window, define the display name and alias for the distribution group. As with user mailboxes, aliases directly affect the e-mail address of the security group.
When you create a security group, you can add members to it, which must be recipient objects for Exchange online, or you can modify the configuration and management of the security group after completion. Additionally, if you select Add owners as members for a group, the group receives the message and the recipient in its owner list can receive the message at the same time, and the creator of the security group is the default owner of the list. Click "Save" to complete the creation of the distribution group.

650) this.width=650; "title=" 02.png "alt=" wkiom1dzc8vxhcvlaabyht0davs833.png-wh_50 "src=" http://s4.51cto.com/ Wyfs02/m01/83/70/wkiom1dzc8vxhcvlaabyht0davs833.png-wh_500x0-wm_3-wmp_4-s_1111129938.png "/>

2, create a distribution group using PowerShell
After you connect to Exchange online through PowerShell, you can New-distributiongroup-name " File Management Group "-alias Fileadmins-type security
Get-distributiongroup" file Management Group "| FL name,recipienttypedetails, PrimarySmtpAddress

650) this.width= 650; "Width=" 501 "height=" 148 "title=" 03.png "style=" width:588px;height:148px; "alt=" Wkiol1dzdbnbt5voaaajzmlnvqc677.png-wh_50 "src=" http://s3.51cto.com/wyfs02/M00/83/6F/ Wkiol1dzdbnbt5voaaajzmlnvqc677.png-wh_500x0-wm_3-wmp_4-s_701864338.png "/>

Also in the EAC, you can see that a security group created through PowerShell already exists.

650) this.width=650; "title=" 04.png "alt=" wkiom1dzdebxpri9aabdrnaaeqi655.png-wh_50 "src=" http://s1.51cto.com/ Wyfs02/m00/83/70/wkiom1dzdebxpri9aabdrnaaeqi655.png-wh_500x0-wm_3-wmp_4-s_521014591.png "/>
Ii. Configuring and Managing Security Groups
1. Manage security groups in the Exchange Admin Center.
In the EAC, navigate to recipients, navigate to the Groups tab, select the security group you want to configure, click the Pen button, and open the Security Group Properties window.
650) this.width=650; "title=" 06.png "alt=" wkiol1dzdjpgdxozaacqiifkcn0051.png-wh_50 "src=" http://s4.51cto.com/ Wyfs02/m00/83/6f/wkiol1dzdjpgdxozaacqiifkcn0051.png-wh_500x0-wm_3-wmp_4-s_3476804059.png "/>
You can see that the list of options and distribution groups are identical, as in the General tab, you can redefine the display name and alias, and the e-mail address of the distribution group. In addition, you can determine whether to have the security group appear in the address list. You can refer to the easy-to-use article-the Exchange Online service 14 in Office 365 How to manage distribution groups for Exchange online.
650) this.width=650; "title=" 07.png "alt=" wkiol1dzdpmatrliaabkssadcns606.png-wh_50 "src=" http://s4.51cto.com/ Wyfs02/m00/83/6f/wkiol1dzdpmatrliaabkssadcns606.png-wh_500x0-wm_3-wmp_4-s_3787833796.png "/>
2. Manage and maintain security groups through PowerShell
After you connect to Exchange online through PowerShell, you can use theGet-distributiongroupView all the security groups in an existing organization.
get-distributiongroup-resultsize unlimited-filter {(recipienttypedetails-eq ' Mailuniversalsecuritygroup ')}
650) this.width=650; "title=" 05.png "alt=" wkiom1dzdvodltaaaaauee-nxxc851.png-wh_50 "src=" http://s1.51cto.com/ Wyfs02/m01/83/70/wkiom1dzdvodltaaaaauee-nxxc851.png-wh_500x0-wm_3-wmp_4-s_3375255090.png "/>
If you need to modify an existing mail-enabled security group, you canSet-distributiongroupRealize. For example, modify the mail address of a mail-enabled security group.
set-distributiongroup "file Management Group"-emailaddresses Smtp:[email Protected],smtp:[email protected] remind you not to spam ads!
650) this.width=650; "title=" 08.png "alt=" wkiom1dzdxdsvk3laaaal1facbq600.png-wh_50 "src=" http://s1.51cto.com/ Wyfs02/m02/83/70/wkiom1dzdxdsvk3laaaal1facbq600.png-wh_500x0-wm_3-wmp_4-s_4173303566.png "/>
Typically, because a security group involves permission assignments, it is generally not used for primary distribution groups and may be used among users within the user group. Therefore, security groups often choose to hide from the recipient address list. If you need to hide the current or left-mail-enabled security group in the recipient address list, you can do so by doing the following:
get-distributiongroup-resultsize unlimited-filter {(recipienttypedetails-eq ' mailuniversalsecuritygroup ') } | Set-distributiongroup-hiddenfromaddresslistsenabled $true
650) this.width=650; "title=" 10.png "alt=" wkiol1dzdbwhk5omaaacardzf5o026.png-wh_50 "src=" http://s2.51cto.com/ Wyfs02/m02/83/6f/wkiol1dzdbwhk5omaaacardzf5o026.png-wh_500x0-wm_3-wmp_4-s_2274719956.png "/>
Verify that the settings are in effect by sampling in the EAC:
650) this.width=650; "title=" 11.png "alt=" wkiom1dzdc7jocwoaabtry6eirg626.png-wh_50 "src=" http://s3.51cto.com/ Wyfs02/m02/83/70/wkiom1dzdc7jocwoaabtry6eirg626.png-wh_500x0-wm_3-wmp_4-s_2315684564.png "/>








This article is from the "Fat Brother Technology Hall" blog, please be sure to keep this source http://liulike.blog.51cto.com/1355103/1794195

EEEKB article--Go to Exchange Online Service 16 in Office 365 How to manage mail-enabled security groups

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.