Skip to content

Commit 79c1325

Browse files
authored
Merge pull request MicrosoftDocs#5483 from get-itips/patch-172
Adding some descriptions
2 parents 73b4044 + d006e2a commit 79c1325

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

skype/skype-ps/skype/Set-CsUserTeamMembers.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,26 +13,26 @@ ms.reviewer:
1313
# Set-CsUserTeamMembers
1414

1515
## SYNOPSIS
16-
{{ Fill in the Synopsis }}
16+
Used to modify an user’s team members list.
1717

1818
## SYNTAX
1919

2020
```
21-
Set-CsUserTeamMembers -Team <System.Management.Automation.PSListModifier`1[System.String]> [-User] <String>
21+
Set-CsUserTeamMembers -Team <PSListModifier> [-User] <String>
2222
[-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
2323
```
2424

2525
## DESCRIPTION
26-
{{ Fill in the Description }}
26+
The feature enables the use of SEFAUtil (Secondary Extension Feature Activation) functionality in PowerShell. SEFAUtil 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. 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: CsAdministrator - Get and Set for all cmdlets, CsVoiceAdministrator - Get and Set for all cmdlets, CsServerAdministrator - Get and Set for all cmdlets, CsHelpDesk - Get for all cmdlets Server auto-discovery needs to be enabled. There are no additional licensing requirements for use of the cmdlets. For more information see [Using SEFAUtil functionality via PowerShell in Skype for Business Server 2019](https://docs.microsoft.com/skypeforbusiness/sefautil-functionality).
2727

2828
## EXAMPLES
2929

3030
### Example 1
3131
```powershell
32-
PS C:\> {{ Add example code here }}
32+
PS C:\> Set-CsUserTeamMembers -User "[email protected]" -Team @{add='[email protected]','[email protected]'}
3333
```
3434

35-
{{ Add example description here }}
35+
This cmdlet adds two other users to the specified user’s team members list, returns an object that contains the team member list and displays the object on the screen, in case of success. In case of failure, an appropriate error message will be shown.
3636

3737
## PARAMETERS
3838

@@ -52,7 +52,7 @@ Accept wildcard characters: False
5252
```
5353
5454
### -Force
55-
{{ Fill Force Description }}
55+
Suppresses the display of any non-fatal error message that might occur when running the command.
5656
5757
```yaml
5858
Type: SwitchParameter
@@ -67,10 +67,10 @@ Accept wildcard characters: False
6767
```
6868
6969
### -Team
70-
{{ Fill Team Description }}
70+
Specifies list of team members. 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.
7171
7272
```yaml
73-
Type: System.Management.Automation.PSListModifier`1[System.String]
73+
Type: PSListModifier
7474
Parameter Sets: (All)
7575
Aliases:
7676

@@ -82,7 +82,7 @@ Accept wildcard characters: False
8282
```
8383
8484
### -User
85-
{{ Fill User Description }}
85+
Indicates the Identity of the user account to be modified. User Identities can be specified using one of four formats: 1) the SIP address; 2) the user principal name (UPN); 3) the domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer) and 4) the Active Directory display name (for example, Ken Myer). User Identities can also be referenced by using the user's Active Directory distinguished name.
8686
8787
```yaml
8888
Type: String

0 commit comments

Comments
 (0)