Articles on: Scripts

Add Team user using Powershell and CSV

Description:



This script is used to add members and owners in Teams

The following columns are required in the CSV:

-GroupID: GroupID of the Team

-User: Email of the user

-Role: Owner or members 

Script:



Install-Module -Name MicrosoftTeams

Connect-MicrosoftTeams

Import-Csv -Path " C:\Users\Awais\OneDrive - Communication Square\Desktop\teams.csv" | foreach{Add-TeamUser -GroupId $_.GROUPID -user $_.upn -Role $_.Role}

Updated on: 31/01/2023

Was this article helpful?

Share your feedback

Cancel

Thank you!