Commands › Microsoft Teams

Get-CsUserCallingSettings

Microsoft Teams MicrosoftTeams Get-*

This cmdlet will show the call forwarding, simultaneous ringing, call group, busy on busy and delegation settings for a user.

Quick start script

# Get-CsUserCallingSettings — 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-CsUserCallingSettings -Identity <String> -InputObject <IConfigApiBasedCmdletsIdentity> | Format-List

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

Syntax — 2 parameter sets

Get (Default)

Get-CsUserCallingSettings -Identity <String> [-Break] [-HttpPipelineAppend <SendAsyncStep[]>]
 [-HttpPipelinePrepend <SendAsyncStep[]>] [-Proxy <Uri>] [-ProxyCredential <PSCredential>]
 [-ProxyUseDefaultCredentials] [<CommonParameters>]

GetViaIdentity

Get-CsUserCallingSettings -InputObject <IConfigApiBasedCmdletsIdentity> [-Break]
 [-HttpPipelineAppend <SendAsyncStep[]>] [-HttpPipelinePrepend <SendAsyncStep[]>] [-Proxy <Uri>]
 [-ProxyCredential <PSCredential>] [-ProxyUseDefaultCredentials] [<CommonParameters>]

Parameters (8)

ParameterTypeRequiredWhat it controls
-Break SwitchParameter {{ Fill Break Description }}
-HttpPipelineAppend SendAsyncStep[] {{ Fill HttpPipelineAppend Description }}
-HttpPipelinePrepend SendAsyncStep[] {{ Fill HttpPipelinePrepend Description }}
-Identity String yes The Identity of the user to show call forwarding, simultaneous ringing, call group and delegation settings for. Can be specified using the ObjectId or the SIP address.
-InputObject IConfigApiBasedCmdletsIdentity yes {{ Fill InputObject Description }}
-Proxy Uri {{ Fill Proxy Description }}
-ProxyCredential PSCredential {{ Fill ProxyCredential Description }}
-ProxyUseDefaultCredentials SwitchParameter {{ Fill ProxyUseDefaultCredentials Description }}

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