Commands › Microsoft Teams
Set-CsOnlineDialInConferencingUser
Modify the properties of a user that has been enabled for Microsoft's audio conferencing service.
Quick start script
# Set-CsOnlineDialInConferencingUser — 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-CsOnlineDialInConferencingUser
$before | Format-List
# 3. Make the change (dry run first)
Set-CsOnlineDialInConferencingUser -WhatIf
Set-CsOnlineDialInConferencingUser
# 4. Verify and diff
$after = Get-CsOnlineDialInConferencingUser
Compare-Object ($before | Out-String) ($after | Out-String)
Syntax — 2 parameter sets
TenantIdParams (Default)
Set-CsOnlineDialInConferencingUser [-Identity] <UserIdParameter> [-BridgeId <Guid>]
[-BridgeName <String>] [-Tenant <Guid>] [-ServiceNumber <String>] [-TollFreeServiceNumber <String>] [-AllowPSTNOnlyMeetings <Boolean>] [-Force]
[-ResetLeaderPin] [-AllowTollFreeDialIn <Boolean>] [-SendEmailToAddress <String>]
[-SendEmailFromAddress <String>] [-SendEmailFromDisplayName <String>] [-SendEmail] [-DomainController <Fqdn>] [-AsJob]
[-WhatIf] [-Confirm] [<CommonParameters>]
TenantDomainParams
Set-CsOnlineDialInConferencingUser [-Identity] <UserIdParameter> [-BridgeId <Guid>]
[-BridgeName <String>] [-TenantDomain <String>] [-ServiceNumber <String>] [-TollFreeServiceNumber <String>] [-AllowPSTNOnlyMeetings <Boolean>] [-Force]
[-ResetLeaderPin] [-AllowTollFreeDialIn <Boolean>] [-SendEmailToAddress <String>]
[-SendEmailFromAddress <String>] [-SendEmailFromDisplayName <String>] [-SendEmail] [-DomainController <Fqdn>] [-AsJob]
[-WhatIf] [-Confirm] [<CommonParameters>]
Parameters (19)
Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.