Skip to content

Commit 4937bf8

Browse files
authored
Merge pull request MicrosoftDocs#5484 from get-itips/patch-173
Adding some descriptions
2 parents 79c1325 + 838fa49 commit 4937bf8

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

skype/skype-ps/skype/Set-CsUserDelegates.md

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

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

1818
## SYNTAX
1919

2020
```
21-
Set-CsUserDelegates -Delegates <System.Management.Automation.PSListModifier`1[System.String]> [-User] <String>
21+
Set-CsUserDelegates -Delegates <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 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. 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-CsUserDelegates -Delegates @{add='[email protected]','[email protected]'} -User "[email protected]"
3333
```
3434

35-
{{ Add example description here }}
35+
This cmdlet modifies the specified user’s delegation settings, returns an object of delegates list and displays the list of delegates, 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
### -Delegates
55-
{{ Fill Delegates Description }}
55+
Specifies list of delegates. The add and remove switches will add and remove specified users from the delegates 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.
5656
5757
```yaml
5858
Type: System.Management.Automation.PSListModifier`1[System.String]
@@ -67,7 +67,7 @@ Accept wildcard characters: False
6767
```
6868
6969
### -Force
70-
{{ Fill Force Description }}
70+
Suppresses the display of any non-fatal error message that might occur when running the command.
7171
7272
```yaml
7373
Type: SwitchParameter
@@ -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 user's SIP address; 2) the user's user principal name (UPN); 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer) and 4) the user's 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)