Body
Issue/Question
How do I add users to a MS365 group using Outlook
How do I bulk add users to a MS365 group using PowerShell
Environment
- Microsoft (MS) 365
- Microsoft Outlook (new)
Cause
Users do not receive emails sent to a mass email group or list
Resolution
Entra ID Group User Add
- Navigate to the Entra ID portal
- In the left hand menu expand Groups and click All groups
- In the search bar search for the name of your group
- Click the group name
- Click Members
- Click +Add members
- Search for the user you want to add
- Check the box next to the name
Note: you can perform steps 7 and 8 repeatedly to add more than one user at a time
- Click Select
Note: here are the Entra ID bulk member add instructions
Outlook Group User Add
- Open Outlook
Note: this requires new Outlook and Member/Owner status in the group
- Click the Groups icon in the left hand column
- Click Discover Groups
- Search for the name of the group (formerly list name)
Note: you have to be a group member to see the group
- Click GroupName (do not click request to join)
Note: if this list name does not exist or you don't know the name contact the Service Desk
- Click Members
- Click Add members
- Type the email address of the member
Note: this can be a USD email address or external user
- Click Add
- Click Close and out of the remaining screens
Note: the users will receive a notification and it can take up to 2 hours for the user to appear in the group
Bulk Adding to a group as an owner
- Launch PowerShell (PS)
Note: if you have not installed the Exchange Online PS Module run: Install-Module -Name ExchangeOnlineManagement
- Connect to Exchange Online
- $365Logon = Get-Credential
Note: use your group owner account
- Connect-ExchangeOnline -Credential $365Logon
- Prepare a CSV file
- Create a CSV file named members.csv with a column header member that includes the email addresses of the users you want to add
Note: attached to the article is a members.csv example file
- Download the addMembers.ps1 PowerShell Script attached to this article
Note: Modify the script to point to the members.csv file location and replace MS365Group with the actual name of your Microsoft 365 group
- In PS navigate to the folder where the script (e.g. C:\Scripts\)
- Run: ./addMembers.ps1