Commands › Microsoft Teams

Add-TeamUser

Microsoft Teams MicrosoftTeams Add-*

The `Add-TeamUser` adds an owner or member to the team, and to the unified group which backs the team.

Quick start script

# Add-TeamUser — quick start (serv365.ai)
# 1. Connect (app-only shown; interactive: omit the certificate parameters)
Connect-MicrosoftTeams -CertificateThumbprint $thumb -ApplicationId $appId -TenantId $tenantId

# 2. Run and inspect
Add-TeamUser -GroupId <String> -User <String> | Format-List

# 3. Export for evidence / drift tracking
Add-TeamUser | Export-Clixml .\TeamUser-$(Get-Date -Format yyyyMMdd).xml

Syntax

Add-TeamUser -GroupId <String> -User <String> [-Role <String>] [<CommonParameters>]

Parameters (3)

ParameterTypeRequiredWhat it controls
-GroupId String yes GroupId of the team.
-Role String Member or Owner. If Owner is specified then the user is also added as a member to the Team backed by unified group.
-User String yes UPN of a user of the organization (user principal name - e.g. johndoe@example.com).

Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.