Commands › Microsoft Teams
Set-CsOnlineDialInConferencingServiceNumber
Modify the properties of a dial-in or audio conferencing service number that is used by callers when they dial in to a meeting.
Quick start script
# Set-CsOnlineDialInConferencingServiceNumber — 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-CsOnlineDialInConferencingServiceNumber
$before | Format-List
# 3. Make the change (dry run first)
Set-CsOnlineDialInConferencingServiceNumber -WhatIf
Set-CsOnlineDialInConferencingServiceNumber
# 4. Verify and diff
$after = Get-CsOnlineDialInConferencingServiceNumber
Compare-Object ($before | Out-String) ($after | Out-String)
Syntax — 2 parameter sets
UniqueNumberParams (Default)
Set-CsOnlineDialInConferencingServiceNumber [-Identity] <String> [-Tenant <Guid>]
[-PrimaryLanguage <String>] [-SecondaryLanguages <String>] [-RestoreDefaultLanguages] [-DomainController <Fqdn>]
[-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
InstanceParams
Set-CsOnlineDialInConferencingServiceNumber [-Instance] <ConferencingServiceNumber> [-Tenant <Guid>]
[-PrimaryLanguage <String>] [-SecondaryLanguages <String>] [-RestoreDefaultLanguages] [-DomainController <Fqdn>]
[-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
Parameters (10)
Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.