Commands › Microsoft Teams

Set-CsTeamsMultiTenantOrganizationConfiguration

Microsoft Teams MicrosoftTeams Set-*

This cmdlet configures the Multi-tenant Organization settings for the tenant.

Quick start script

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

# 2. Capture the current state first — you cannot roll back what you never recorded
$before = Get-CsTeamsMultiTenantOrganizationConfiguration
$before | Format-List

# 3. Make the change
Set-CsTeamsMultiTenantOrganizationConfiguration -CopilotFromHomeTenant <Boolean> -Identity <String>

# 4. Verify and diff
$after = Get-CsTeamsMultiTenantOrganizationConfiguration
Compare-Object ($before | Out-String) ($after | Out-String)

Syntax

Set-CsTeamsMultiTenantOrganizationConfiguration
       [[-Identity] <string>]
       [-CopilotFromHomeTenant <Enabled/Disabled>]

Parameters (2)

ParameterTypeRequiredWhat it controls
-CopilotFromHomeTenant Boolean yes Setting value of the Teams Multi-tenant Organization Setting. CopilotFromHomeTenant controls user access to Copilot license in their home tenant during cross-tenant meetings.
-Identity String yes Identity of the Teams Multi-tenant Organization Setting.

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