Commands › Microsoft Teams
Get-CsUserCallingSettings
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)
Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.