Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions teams/teams-ps/MicrosoftTeams/Get-CsUserCallingSettings.md
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,7 @@ Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
adsdff
### -Identity
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.
Expand Down
27 changes: 25 additions & 2 deletions teams/teams-ps/MicrosoftTeams/Set-CsUserCallingSettings.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,16 @@ title: Set-CsUserCallingSettings
# Set-CsUserCallingSettings

## SYNOPSIS
This cmdlet will set the call forwarding, simultaneous ringing and call group settings for the specified user.
Configures calling settings for a specified user or Resource Account, including call forwarding, simultaneous ringing, call groups, delegation, and other call-handling options.

For user accounts, this cmdlet enables configuration of delegates and user-specific call-handling behaviour.

For Resource Accounts, these settings are primarily used in Shared Line Appearance (SLA) scenarios, where the Resource Account is associated with the primary phone number and delegated participants (such as CAP devices or associated users) are configured to handle incoming calls on behalf of the Resource Account.

## SYNTAX

### Identity (Default)

```
Set-CsUserCallingSettings -Identity <String> [-HttpPipelinePrepend <SendAsyncStep[]>] [<CommonParameters>]
```
Expand Down Expand Up @@ -66,8 +71,26 @@ Set-CsUserCallingSettings -Identity <String> [-HttpPipelinePrepend <SendAsyncSte
-IsForwardingEnabled <Boolean> [<CommonParameters>]
```

### -MaximumConcurrentCalls

Applies only to users of the Resource Account type that are configured for Shared Line Appearance (SLA) with assigned delegates. This setting specifies the maximum number of concurrent calls that can be handled by the delegates of the Resource Account. When the configured limit is reached, any additional incoming calls are automatically routed according to the Resource Account's unanswered call settings.

```yaml
Type: System.Int32
Parameter Sets: 1-50
Aliases:

Required: False
Position: Named
Default value: 10
Accept pipeline input: False
Accept wildcard characters: False
```

## DESCRIPTION
This cmdlet sets the call forwarding, simultaneous ringing and call group settings for the specified user.
This cmdlet sets the call forwarding, simultaneous ringing and call group settings for the specified user or Resource Account.

When configuring a Target Type for forwarding or unanswered call settings, calls can be redirected to ..... either a user or a Resource Account. When a Resource Account is specified as the target advanced routing scenarios such as forwarding calls to Auto Attendants (AA), Call Queues (CQ), or other Resource Accounts associated Agents.

When specifying settings you need to specify all settings with a settings grouping, for instance, you can't just change a forwarding target. Instead, you need to
start by getting the current settings, making the necessary changes, and then setting/writing all settings within the settings group.
Expand Down