Skip to content

Commit 06ca2e2

Browse files
authored
Merge pull request MicrosoftDocs#3827 from MicrosoftDocs/master
Merges Master to Live. See commits for details.
2 parents 2a89c82 + d59c06d commit 06ca2e2

File tree

3 files changed

+77
-91
lines changed

3 files changed

+77
-91
lines changed

skype/skype-ps/skype/Get-CsUserCallForwardingSettings.md

Lines changed: 21 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.reviewer:
1212
# Get-CsUserCallForwardingSettings
1313

1414
## SYNOPSIS
15-
{{ Fill in the Synopsis }}
15+
This cmdlet returns the specified user’s call forwarding settings as an object, and displays the same on the screen.
1616

1717
## SYNTAX
1818

@@ -21,41 +21,35 @@ Get-CsUserCallForwardingSettings [-User] <String> [-Force] [<CommonParameters>]
2121
```
2222

2323
## DESCRIPTION
24-
{{ Fill in the Description }}
24+
The feature enables the use of SEFAUtil functionality in PowerShell. SEFAUtil (Secondary Extension Feature Activation) enables Skype server administrators and helpdesk agents to configure delegate-ringing, call-forwarding and Group Call Pickup settings on behalf of a Skype server user. This tool also allows administrators to query the call-routing settings that are published for a particular user.
25+
The cmdlets introduced in this feature can only be run by members of the following groups for On-prem deployments, per the access level specified below:
26+
• CsAdministrator – Get and Set for all cmdlets
27+
• CsVoiceAdministrator - Get and Set for all cmdlets
28+
• CsServerAdministrator - Get and Set for all cmdlets
29+
• CsHelpDesk - Get for all cmdlets
30+
Server auto-discovery needs to be enabled. There are no additional licensing requirements for use of the cmdlets.
2531

2632
## EXAMPLES
2733

28-
### Example 1
29-
```powershell
30-
PS C:\> {{ Add example code here }}
34+
###-------------------------- Example --------------------------
3135
```
32-
33-
{{ Add example description here }}
36+
Get-CsUserCallForwardingSettings -User [email protected]
37+
```
38+
This example returns the call forwarding settings for the specified user and displays the same on screen
3439

3540
## PARAMETERS
3641

37-
### -Force
38-
{{ Fill Force Description }}
39-
40-
```yaml
41-
Type: SwitchParameter
42-
Parameter Sets: (All)
43-
Aliases:
44-
45-
Required: False
46-
Position: Named
47-
Default value: None
48-
Accept pipeline input: False
49-
Accept wildcard characters: False
50-
```
51-
5242
### -User
53-
{{ Fill User Description }}
43+
Specifies the identity of the target user.
44+
Acceptable values include:
45+
46+
Example: sip:jphillips@contoso.com
5447

5548
```yaml
5649
Type: String
5750
Parameter Sets: (All)
5851
Aliases: DisplayName, SipAddress, Identity
52+
Applicable: Skype for Business Server 2019CU1
5953

6054
Required: True
6155
Position: 0
@@ -69,11 +63,12 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
6963
7064
## INPUTS
7165
72-
### System.String
66+
###
67+
None
7368
7469
## OUTPUTS
7570
76-
### System.Object
77-
## NOTES
71+
###
72+
Call forwarding settings for specified user
7873
7974
## RELATED LINKS

skype/skype-ps/skype/Get-CsUserTeamMembers.md

Lines changed: 21 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.reviewer:
1212
# Get-CsUserTeamMembers
1313

1414
## SYNOPSIS
15-
{{ Fill in the Synopsis }}
15+
This cmdlet returns an object containing list of team members and displays the object on screen, in case of success. In case of failure, the appropriate error message is shown.
1616

1717
## SYNTAX
1818

@@ -21,41 +21,36 @@ Get-CsUserTeamMembers [-User] <String> [-Force] [<CommonParameters>]
2121
```
2222

2323
## DESCRIPTION
24-
{{ Fill in the Description }}
24+
The feature enables the use of SEFAUtil functionality in PowerShell. SEFAUtil (Secondary Extension Feature Activation) enables Skype server administrators and helpdesk agents to configure delegate-ringing, call-forwarding and Group Call Pickup settings on behalf of a Skype server user. This tool also allows administrators to query the call-routing settings that are published for a particular user.
25+
The cmdlets introduced in this feature can only be run by members of the following groups for On-prem deployments, per the access level specified below:
26+
• CsAdministrator – Get and Set for all cmdlets
27+
• CsVoiceAdministrator - Get and Set for all cmdlets
28+
• CsServerAdministrator - Get and Set for all cmdlets
29+
• CsHelpDesk - Get for all cmdlets
30+
Server auto-discovery needs to be enabled. There are no additional licensing requirements for use of the cmdlets.
2531

2632
## EXAMPLES
2733

28-
### Example 1
29-
```powershell
30-
PS C:\> {{ Add example code here }}
34+
###-------------------------- Example --------------------------
35+
```
36+
Get-CsUserTeamMembers -User [email protected]
3137
```
3238

33-
{{ Add example description here }}
39+
This example returns the list of team members for the specified user and displays on the screen.
3440

3541
## PARAMETERS
3642

37-
### -Force
38-
{{ Fill Force Description }}
39-
40-
```yaml
41-
Type: SwitchParameter
42-
Parameter Sets: (All)
43-
Aliases:
44-
45-
Required: False
46-
Position: Named
47-
Default value: None
48-
Accept pipeline input: False
49-
Accept wildcard characters: False
50-
```
51-
5243
### -User
53-
{{ Fill User Description }}
44+
Specifies the identity of the target user.
45+
Acceptable values include:
46+
47+
Example: sip:jphillips@contoso.com
5448

5549
```yaml
5650
Type: String
5751
Parameter Sets: (All)
5852
Aliases: DisplayName, SipAddress, Identity
53+
Applicable: Skype for Business Server 2019CU1
5954

6055
Required: True
6156
Position: 0
@@ -69,11 +64,12 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
6964
7065
## INPUTS
7166
72-
### System.String
67+
###
68+
None
7369
7470
## OUTPUTS
7571
76-
### System.Object
77-
## NOTES
72+
###
73+
an object of team members list
7874
7975
## RELATED LINKS

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

Lines changed: 35 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.reviewer:
1212
# Set-CsUserCallForwardingSettings
1313

1414
## SYNOPSIS
15-
{{ Fill in the Synopsis }}
15+
This cmdlet modifies the specified user’s call forwarding settings. This cmdlet returns the specified user’s call forwarding settings as an object, and displays the same on the screen, in case of success. In case of failure, the appropriate error message is shown.
1616

1717
## SYNTAX
1818

@@ -40,7 +40,13 @@ Set-CsUserCallForwardingSettings -EnableSimulRing <String> [-SettingsActiveWorkH
4040
```
4141

4242
## DESCRIPTION
43-
{{ Fill in the Description }}
43+
The feature enables the use of SEFAUtil functionality in PowerShell. SEFAUtil (Secondary Extension Feature Activation) enables Skype server administrators and helpdesk agents to configure delegate-ringing, call-forwarding and Group Call Pickup settings on behalf of a Skype server user. This tool also allows administrators to query the call-routing settings that are published for a particular user.
44+
The cmdlets introduced in this feature can only be run by members of the following groups for On-prem deployments, per the access level specified below:
45+
• CsAdministrator – Get and Set for all cmdlets
46+
• CsVoiceAdministrator - Get and Set for all cmdlets
47+
• CsServerAdministrator - Get and Set for all cmdlets
48+
• CsHelpDesk - Get for all cmdlets
49+
Server auto-discovery needs to be enabled. There are no additional licensing requirements for use of the cmdlets.
4450

4551
## EXAMPLES
4652

@@ -60,6 +66,7 @@ Prompts you for confirmation before running the cmdlet.
6066
Type: SwitchParameter
6167
Parameter Sets: (All)
6268
Aliases: cf
69+
Applicable: Skype for Business Server 2019CU1
6370

6471
Required: False
6572
Position: Named
@@ -69,12 +76,15 @@ Accept wildcard characters: False
6976
```
7077
7178
### -DelegateRingWaitTime
72-
{{ Fill DelegateRingWaitTime Description }}
79+
Specifies the time, in seconds, to wait before ringing delegates.
80+
Acceptable inputs: 0, 5, 10
81+
7382
7483
```yaml
7584
Type: Int32
7685
Parameter Sets: EnableForwarding
7786
Aliases:
87+
Applicable: Skype for Business Server 2019CU1
7888

7989
Required: False
8090
Position: Named
@@ -84,12 +94,13 @@ Accept wildcard characters: False
8494
```
8595
8696
### -Delegates
87-
{{ Fill Delegates Description }}
97+
Specifies list of delegates that calls will be forwarded to. This parameter can only be used with EnableForwarding and EnableSimulRing parameters.
8898
8999
```yaml
90100
Type: System.Management.Automation.PSListModifier`1[System.String]
91101
Parameter Sets: EnableForwarding, EnableSimulRing
92102
Aliases:
103+
Applicable: Skype for Business Server 2019CU1
93104

94105
Required: False
95106
Position: Named
@@ -99,12 +110,13 @@ Accept wildcard characters: False
99110
```
100111
101112
### -DisableForwarding
102-
{{ Fill DisableForwarding Description }}
113+
This is a switch parameter that disables forwarding. Cannot be used with the EnableSimulRing and EnableForwarding parameters.
103114
104115
```yaml
105116
Type: SwitchParameter
106117
Parameter Sets: DisableForwarding
107118
Aliases:
119+
Applicable: Skype for Business Server 2019CU1
108120

109121
Required: True
110122
Position: Named
@@ -114,12 +126,13 @@ Accept wildcard characters: False
114126
```
115127
116128
### -EnableForwarding
117-
{{ Fill EnableForwarding Description }}
129+
Enables forwarding to the specified destination. Cannot be used with the EnableSimulRing and DisableForwarding parameters.
118130
119131
```yaml
120132
Type: String
121133
Parameter Sets: EnableForwarding
122134
Aliases:
135+
Applicable: Skype for Business Server 2019CU1
123136

124137
Required: True
125138
Position: Named
@@ -129,12 +142,16 @@ Accept wildcard characters: False
129142
```
130143
131144
### -EnableSimulRing
132-
{{ Fill EnableSimulRing Description }}
145+
This is a switch parameter that enables forwarding to the specified destination. Cannot be used along with the DisableForwarding and EnableForwarding parameters.
146+
oSimulRingDestination can be a phone number, delegates, or team call group.
147+
 Acceptable input formats: “<phone number>”, Team, Delegates
148+
133149
134150
```yaml
135151
Type: String
136152
Parameter Sets: EnableSimulRing
137153
Aliases:
154+
Applicable: Skype for Business Server 2019CU1
138155

139156
Required: True
140157
Position: Named
@@ -143,28 +160,14 @@ Accept pipeline input: False
143160
Accept wildcard characters: False
144161
```
145162
146-
### -Force
147-
{{ Fill Force Description }}
148-
149-
```yaml
150-
Type: SwitchParameter
151-
Parameter Sets: (All)
152-
Aliases:
153-
154-
Required: False
155-
Position: Named
156-
Default value: None
157-
Accept pipeline input: False
158-
Accept wildcard characters: False
159-
```
160-
161163
### -SettingsActiveWorkHours
162-
{{ Fill SettingsActiveWorkHours Description }}
164+
Switch parameter that specifies that settings should apply during work hours defined in Outlook. When this is not specified, settings apply all the time by default.
163165
164166
```yaml
165167
Type: SwitchParameter
166168
Parameter Sets: (All)
167169
Aliases:
170+
Applicable: Skype for Business Server 2019CU1
168171

169172
Required: False
170173
Position: Named
@@ -174,12 +177,15 @@ Accept wildcard characters: False
174177
```
175178
176179
### -Team
177-
{{ Fill Team Description }}
180+
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.
181+
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.
182+
178183
179184
```yaml
180185
Type: System.Management.Automation.PSListModifier`1[System.String]
181186
Parameter Sets: EnableSimulRing
182187
Aliases:
188+
Applicable: Skype for Business Server 2019CU1
183189

184190
Required: False
185191
Position: Named
@@ -195,6 +201,7 @@ Accept wildcard characters: False
195201
Type: Int32
196202
Parameter Sets: EnableSimulRing
197203
Aliases:
204+
Applicable: Skype for Business Server 2019CU1
198205

199206
Required: False
200207
Position: Named
@@ -210,6 +217,7 @@ Accept wildcard characters: False
210217
Type: String
211218
Parameter Sets: DisableForwarding, EnableSimulRing
212219
Aliases:
220+
Applicable: Skype for Business Server 2019CU1
213221

214222
Required: False
215223
Position: Named
@@ -225,6 +233,7 @@ Accept wildcard characters: False
225233
Type: SwitchParameter
226234
Parameter Sets: DisableForwarding, EnableSimulRing
227235
Aliases:
236+
Applicable: Skype for Business Server 2019CU1
228237

229238
Required: False
230239
Position: Named
@@ -240,6 +249,7 @@ Accept wildcard characters: False
240249
Type: Int32
241250
Parameter Sets: DisableForwarding, EnableSimulRing
242251
Aliases:
252+
Applicable: Skype for Business Server 2019CU1
243253

244254
Required: False
245255
Position: Named
@@ -255,6 +265,7 @@ Accept wildcard characters: False
255265
Type: String
256266
Parameter Sets: (All)
257267
Aliases: DisplayName, SipAddress, Identity
268+
Applicable: Skype for Business Server 2019CU1
258269

259270
Required: True
260271
Position: 0
@@ -263,22 +274,6 @@ Accept pipeline input: True (ByPropertyName, ByValue)
263274
Accept wildcard characters: False
264275
```
265276
266-
### -WhatIf
267-
Shows what would happen if the cmdlet runs.
268-
The cmdlet is not run.
269-
270-
```yaml
271-
Type: SwitchParameter
272-
Parameter Sets: (All)
273-
Aliases: wi
274-
275-
Required: False
276-
Position: Named
277-
Default value: None
278-
Accept pipeline input: False
279-
Accept wildcard characters: False
280-
```
281-
282277
### CommonParameters
283278
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
284279

0 commit comments

Comments
 (0)