Commands › Microsoft Teams
Add-TeamUser
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)
Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.