

For example, new users who work from outside the office benefit from knowing how to contact the IT Service Desk, HR, and other internal services. The below command lists all members of given group.With many organizations now allowing users to work from anywhere and on any device, a new set of challenges has risen to the surface. Once we added user as member in O365 group, we can use Get-UnifiedGroupLinks cmdlet to get members. Import-CSV "C:\members.csv" | ForEach-Object Find and list members of unified group: Consider the csv file “ members.csv” ( Download sample CSV) that includes the column header “ member” which holds the user identity values in each row of the csv file. The parameter Links accept multiple values, we need to provide users as comma (“,”) separated values to add multiple members (ex: If the user names contain spaces or otherwise require quotation marks (ex: “username 1″,”username 2”,…).Īdd multiple members to O365 group: Add-UnifiedGroupLinks –Identity "O365Group" –LinkType Members –Links Add Bulk Users to Office 365 Group from CSVįor bulk import process the CSV file is the best choice of all time, you can use the below powershell commands to add bulk members to an office 365 group by importing user identities from csv file. Add-UnifiedGroupLinks –Identity "O365Group" –LinkType Members –Links have to set the parameter LinkType as Members to add user as member and other valid values are Owners and Subscribers. Run the below command to add single user into Office 365 group. $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri -Credential $365Logon -Authentication Basic -AllowRedirection So now a days every admins getting frequent request to add new on-board users to Office 365 group, we can easily achieve this task with Exchange Online powershell cmdlet Add-UnifiedGroupLinks.īefore proceed run the below commands to connect Exchange Online Powershell session.

As you know Microsoft is targeting Office 365 Group as base service for many of cloud services like Planner, Teams and etc.
