Skip to content

Commit f8a397e

Browse files
authored
Merge pull request MicrosoftDocs#5879 from dariomws/patch-172
Added examples and some missing information in Set-CsUserCallForwardingSettings.md
2 parents 30f25c7 + 7204315 commit f8a397e

File tree

1 file changed

+32
-16
lines changed

1 file changed

+32
-16
lines changed

skype/skype-ps/skype/Set-CsUserCallForwardingSettings.md

Lines changed: 32 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,31 @@ Server auto-discovery needs to be enabled. There are no additional licensing req
5353

5454
### Example 1
5555
```powershell
56-
PS C:\> {{ Add example code here }}
56+
PS C:\> Set-CsUserCallForwardingSettings -User [email protected] -DisableForwarding
5757
```
5858

59-
{{ Add example description here }}
59+
This example disables the user’s call forwarding settings.
60+
61+
### Example 2
62+
```powershell
63+
PS C:\> Set-CsUserCallForwardingSettings -User [email protected] -EnableForwarding +4721956666
64+
```
65+
66+
This example modifies the user’s call forwarding settings, activating call forwarding to a specific phone number.
67+
68+
### Example 3
69+
```powershell
70+
PS C:\> Set-CsUserCallForwardingSettings -User [email protected] -EnableSimulRing Team -Team [email protected],[email protected] -TeamDelegateRingWaitTime 5
71+
```
72+
73+
This example modifies the SimulRing settings, activating simultaneous ring for the users listed in the Team parameter.
74+
75+
### Example 4
76+
```powershell
77+
PS C:\> Set-CsUserCallForwardingSettings -User [email protected] -DisableForwarding -UnansweredToVoicemail -UnansweredWaitTime 30
78+
```
79+
80+
This example sends unanswered calls to voicemail after 30 seconds.
6081

6182
## PARAMETERS
6283

@@ -77,8 +98,7 @@ Accept wildcard characters: False
7798
```
7899
79100
### -DelegateRingWaitTime
80-
Specifies the time, in seconds, to wait before ringing delegates.
81-
Acceptable inputs: 0, 5, 10
101+
Specifies the time, in seconds, to wait before ringing delegates. Acceptable inputs: 0, 5, 10.
82102
83103
84104
```yaml
@@ -95,7 +115,7 @@ Accept wildcard characters: False
95115
```
96116
97117
### -Delegates
98-
Specifies list of delegates that calls will be forwarded to. This parameter can only be used with EnableForwarding and EnableSimulRing parameters.
118+
Specifies the list of delegates that calls will be forwarded to. This parameter can only be used with EnableForwarding and EnableSimulRing parameters.
99119
100120
```yaml
101121
Type: System.Management.Automation.PSListModifier`1[System.String]
@@ -143,9 +163,7 @@ Accept wildcard characters: False
143163
```
144164
145165
### -EnableSimulRing
146-
This is a switch parameter that enables forwarding to the specified destination. Cannot be used along with the DisableForwarding and EnableForwarding parameters.
147-
oSimulRingDestination can be a phone number, delegates, or team call group.
148-
 Acceptable input formats: "<phone number>", Team, Delegates
166+
This is a switch parameter that enables forwarding to the specified destination. Cannot be used along with the DisableForwarding and EnableForwarding parameters. SimulRingDestination can be a phone number, delegates, or team call group. Acceptable input formats: "<phone number>", Team, Delegates.
149167
150168
151169
```yaml
@@ -178,9 +196,7 @@ Accept wildcard characters: False
178196
```
179197
180198
### -Team
181-
Specifies list of team members that calls will be forwarded to. The add and remove switches will add and remove specified users from the Team Members list. The replace parameter will set the list to the specified list, wiping out the previous list. Add and remove can be used together, but neither of them can be used along with replace.
182-
o Acceptable input formats for add/remove/replace list: The inputs can be a single user address (in one of the below formats), or a comma separated list of user addresses, in the 4 standard formats that Identity parameter accepts.
183-
199+
Specifies list of team members that calls will be forwarded to. The add and remove switches will add and remove specified users from the Team Members list. The replace parameter will set the list to the specified list, wiping out the previous list. Add and remove can be used together, but neither of them can be used along with replace. Acceptable input formats for add/remove/replace list: The inputs can be a single user address (in one of the below formats), or a comma separated list of user addresses, in the 4 standard formats that Identity parameter accepts.
184200
185201
```yaml
186202
Type: System.Management.Automation.PSListModifier`1[System.String]
@@ -196,7 +212,7 @@ Accept wildcard characters: False
196212
```
197213
198214
### -TeamDelegateRingWaitTime
199-
{{ Fill TeamDelegateRingWaitTime Description }}
215+
Specifies the time, in seconds, to wait before ringing team members.
200216
201217
```yaml
202218
Type: Int32
@@ -212,7 +228,7 @@ Accept wildcard characters: False
212228
```
213229
214230
### -UnansweredToOther
215-
{{ Fill UnansweredToOther Description }}
231+
Specifies that unanswered calls will be send to other user or phone number.
216232
217233
```yaml
218234
Type: String
@@ -228,7 +244,7 @@ Accept wildcard characters: False
228244
```
229245
230246
### -UnansweredToVoicemail
231-
{{ Fill UnansweredToVoicemail Description }}
247+
Specifies that unanswered calls will be send to voicemail.
232248
233249
```yaml
234250
Type: SwitchParameter
@@ -244,7 +260,7 @@ Accept wildcard characters: False
244260
```
245261
246262
### -UnansweredWaitTime
247-
{{ Fill UnansweredWaitTime Description }}
263+
Specifies the time, in seconds, to wait before send unanswered calls to voicemail.
248264
249265
```yaml
250266
Type: Int32
@@ -260,7 +276,7 @@ Accept wildcard characters: False
260276
```
261277
262278
### -User
263-
{{ Fill User Description }}
279+
Specifies the SIP address of the user whose call forwarding settings will be modified.
264280
265281
```yaml
266282
Type: String

0 commit comments

Comments
 (0)