Skip to content

Commit 490eb19

Browse files
authored
Update Set-CsUser.md
Updating based on feedback from customer that using display name doesn't work. I tested this out. display name doesn't work if using TRPS, but it does work in onprem. Clarified the docs to that effect
1 parent 7e94413 commit 490eb19

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

skype/skype-ps/skype/Set-CsUser.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ You should not attempt to manually configure these attributes.
4040

4141
### -------------------------- Example 1 --------------------------
4242
```
43-
Set-CsUser -Identity "Pilar Ackerman" -EnterpriseVoiceEnabled $True
43+
Set-CsUser -Identity [email protected] -EnterpriseVoiceEnabled $True
4444
```
4545

46-
In Example 1, the `Set-CsUser` cmdlet is used to modify the user account with the Identity Pilar Ackerman.
46+
In Example 1, the `Set-CsUser` cmdlet is used to modify the user account [email protected].
4747
In this case, the account is modified to enable Enterprise Voice, the Microsoft implementation of VoIP.
4848
This task is carried out by adding the EnterpriseVoiceEnabled parameter, and then setting the parameter value to $True.
4949

@@ -62,7 +62,11 @@ That information is then piped to the `Set-CsUser` cmdlet, which enables Enterpr
6262

6363
### -Identity
6464
Indicates the Identity of the user account to be modified.
65-
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).
65+
User Identities can be specified using one of four formats:
66+
- 1) the user's SIP address;
67+
- 2) the user's user principal name (UPN);
68+
- 3) the user's domain name and logon name, in the form domain\logon (for example, litwareinc\kenmyer)
69+
- 4) the user's Active Directory display name (for example, Ken Myer), (only available if using the on-premises cmdlets)
6670
User Identities can also be referenced by using the user's Active Directory distinguished name.
6771

6872
You can use the asterisk (*) wildcard character when using the display name as the user Identity.

0 commit comments

Comments
 (0)