Views:
Creating Groups in Office 365 is a great way to manage people with similar tasks or users within the same team or department. Groups are an essential component of the Office 365 ecosystem. In these next steps, we will create an Office 365 Group through the Admin Center and PowerShell.
 
REQUIREMENTS
To create a Group in the Admin Center you must be either a Global Administrator or a User Administrator.
 
STEPS:
  1. Go to the Microsoft 365 Admin Center at  http://admin.microsoft.com
  2. Select Teams & groups > Add a group
  1. Select the Group type you wish to create, and then click Next. 
  1. In the Set up the basics sections, enter a group name and description, then click Next.
  1. Click Next to move to the Owners sections.
  2. In the Owner's box, you can select two users who will have ownership of the group. You can add members later when the Group is created.
  1. Next you can assign Members to add to the group. You can add as many people as you would like. You can add more Members after the group is created.
  1. From the Edit Settings page, assign the group a unique email address. Choose if you want the group to be public or private. Choose if you want the group to have a Microsoft Teams team.
  1. On the Review and finish adding group screens, review the group you are creating and click Create a group to complete the process.
 
After creating your group, you can assign users to the group as well as add new owners to the group. You can do this by following the steps below:
 
STEPS:
  1. Go to the Microsoft 365 Admin Center at  http://admin.microsoft.com
  2. Select Group and search for the group you want to add members or owners. 
  3. Select the Group > Members
  4. Select Add members and owners and select the users you would like to add to the group. 

 
Creating New Office 365 group using PowerShell
 
Creating a new Office 365 group can also be done using PowerShell. Below are steps on how to create a Group using PowerShell:
 
STEPS:
  1. Go to Start > PowerShell > Run as an Administrator. 
  2. Run the following command if you haven't done so:
    1. Import-Module ExchangeOnlineManagement
  3. Next, run the following command to connect to your Exchange server:
    1. Connect-ExchangeOnline
    2. You will then be prompted to log in to your account. Please make sure to use an Administrator account. 
  4. Run the following command to create the new Group. 
    1. New-UnifiedGroup -DisplayName "Tangent Group" -Alias "TestGroup" -EmailAddresses "Tangent@test.com" -AccessType Private
 
This will create a new private group called "Tangent Group" with an email address of "Tangent@test.com