Commands › Microsoft Teams

Get-CsOnlineDialInConferencingUser

Microsoft Teams MicrosoftTeams Get-*

View the properties and settings of users that are enabled for dial-in conferencing and are using Microsoft as their PSTN conferencing provider.

Quick start script

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

# 2. Run and inspect
Get-CsOnlineDialInConferencingUser | Format-List

# 3. Export for evidence / drift tracking
Get-CsOnlineDialInConferencingUser | Export-Clixml .\CsOnlineDialInConferencingUser-$(Get-Date -Format yyyyMMdd).xml

Syntax

Get-CsOnlineDialInConferencingUser [-BridgeName <String>] [-ServiceNumber <String>] [-TenantDomain <String>]
 [-LdapFilter <String>] [[-Identity] <UserIdParameter>] [-Tenant <Guid>] [-BridgeId <Guid>] [-ResultSize <Int32>]
 [-DomainController <Fqdn>] [-Force] [<CommonParameters>]

Parameters (10)

ParameterTypeRequiredWhat it controls
-BridgeId Guid *This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage*.
-BridgeName String *This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage*.
-DomainController Fqdn *This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage*.
-Force SwitchParameter *This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage*.
-Identity UserIdParameter Specifies the user to retrieve. The user can be specified by using one of four formats: 1) the user's SIP address; 2) the user's user principal name (UPN); 3) the user's domain name and logon name, in the form...
-LdapFilter String *This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage*.
-ResultSize Int32 Enables you to limit the number of records returned by the cmdlet. For example, to return seven users (regardless of the number of users that are in your forest) include the ResultSize parameter and set the parameter...
-ServiceNumber String *This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage*.
-Tenant Guid *This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage*.
-TenantDomain Object *This parameter has been deprecated from Teams PowerShell Modules 3.0 and above due to limited usage*.

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