Commands › Microsoft Teams
Set-CsTeamsAcsFederationConfiguration
This cmdlet is used to manage the federation configuration between Teams and Azure Communication Services. For more information, please see Azure Communication Services and Teams Interoperability.
Quick start script
# Set-CsTeamsAcsFederationConfiguration — 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-CsTeamsAcsFederationConfiguration
$before | Format-List
# 3. Make the change (dry run first)
Set-CsTeamsAcsFederationConfiguration -WhatIf
Set-CsTeamsAcsFederationConfiguration
# 4. Verify and diff
$after = Get-CsTeamsAcsFederationConfiguration
Compare-Object ($before | Out-String) ($after | Out-String)
Syntax
Set-CsTeamsAcsFederationConfiguration
[-Identity <String[]>]
[-EnableAcsUsers <Boolean>]
[-AllowedAcsResources <String[]>]
[-RequireAcsFederationForMeeting <Boolean>]
[-LabelForAllowedAcsUsers <String>]
[-HideBannerForAllowedAcsUsers <Boolean>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Parameters (6)
Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.