Commands › Microsoft Teams

Set-CsApplicationMeetingConfiguration

Microsoft Teams MicrosoftTeams Set-*

Modifies an existing application meeting configuration for the tenant.

Quick start script

# Set-CsApplicationMeetingConfiguration — 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-CsApplicationMeetingConfiguration
$before | Format-List

# 3. Make the change (dry run first)
Set-CsApplicationMeetingConfiguration -Identity <XdsIdentity> -WhatIf
Set-CsApplicationMeetingConfiguration -Identity <XdsIdentity>

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

Syntax — 2 parameter sets

Identity

Set-CsApplicationMeetingConfiguration [-Identity <XdsIdentity>] [-AllowRemoveParticipantAppIds <PSListModifier>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]

Instance

Set-CsApplicationMeetingConfiguration [-Instance <PSObject>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]

Parameters (6)

ParameterTypeRequiredWhat it controls
-AllowRemoveParticipantAppIds PSListModifier A list of application (client) IDs. For details of application (client) ID, refer to: [Get tenant and app ID values for signing...
-Confirm SwitchParameter Prompts you for confirmation before executing the command.
-Force SwitchParameter Suppresses the display of any non-fatal error message that might occur when running the command.
-Identity XdsIdentity yes Unique identifier of the application meeting configuration settings to be returned. Because you can only have a single, global instance of these settings, you do not have to include the Identity when calling the...
-Instance PSObject Allows you to pass a reference to an object to the cmdlet rather than set individual parameter values.
-WhatIf SwitchParameter Describes what would happen if you executed the command without actually executing the command.

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