Skip to content

Commit b581b6b

Browse files
authored
Merge pull request MicrosoftDocs#4910 from greiginsydney/patch-38
Escaped asterisk (MD bug) + removed references to "2015"
2 parents 1339d37 + 39f57e5 commit b581b6b

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

skype/skype-ps/skype/Get-CsUserPoolInfo.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ This command returns user pool information for a single user: the user with the
5959
Get-CsUser | Get-CsUserPoolInfo
6060
```
6161

62-
In Example 2, user pool information is returned for all the users who have been enabled for Skype for Business Server 2015.
63-
To carry out this task, the command first calls the Get-CsUser cmdlet without any parameters in order to return a collection of all the Skype for Business Server 2015-enabled users.
62+
In Example 2, user pool information is returned for all the users who have been enabled for Skype for Business Server.
63+
To carry out this task, the command first calls the Get-CsUser cmdlet without any parameters in order to return a collection of all the users enabled for Skype for Business Server.
6464
This collection is then piped to the Get-CsUserPoolInfo cmdlet, which displays pool information for each user in the collection.
6565

6666
### -------------------------- EXAMPLE --------------------------
@@ -69,8 +69,8 @@ Get-CsUser | Where-Object {$_.RegistrarPool -ne $Null} | Get-CsUserPoolInfo
6969
```
7070

7171
The command shown in Example 3 is a variation of the command used in Example 2.
72-
In Example 2, pool information is returned for all the users who have been enabled for Skype for Business Server 2015.
73-
However, it is possible to have users who have been enabled for Skype for Business Server 2015 but have not been assigned a Registrar pool.
72+
In Example 2, pool information is returned for all the users who have been enabled for Skype for Business Server.
73+
However, it is possible to have users who have been enabled for Skype for Business Server but have not been assigned a Registrar pool.
7474
The command shown in Example 2 displays an error message for each user who meets those criteria; those error messages are suppressed in Example 3.
7575

7676
To suppress the error message, Example 3 again uses the Get-CsUser cmdlet to return a collection of all the Skype for Business Server-enabled users.
@@ -93,11 +93,11 @@ Get-CsUser | Get-CsUserPoolInfo | Where-Object {$_.BackupPoolFqdn -eq $Null}
9393
```
9494

9595
The command shown in Example 5 returns pool information for all the users who have not been assigned a backup Registrar pool.
96-
To carry out this task, the command first calls the Get-CsUser cmdlet to return a collection of all the users who have been enabled for Skype for Business Server 2015.
96+
To carry out this task, the command first calls the Get-CsUser cmdlet to return a collection of all the users who have been enabled for Skype for Business Server.
9797
That information is then piped to the Get-CsUserPoolInfo cmdlet, which retrieves pool information for each user in the collection.
9898
Finally, that pool information is piped to the Where-Object cmdlet, which displays data only for those users where the BackupPoolFqdn property is equal to a null value.
9999

100-
### -------------------------- Example ------------------------ (Lync Server 2010)
100+
### -------------------------- Example ------------------------
101101
```
102102
Get-CsUserPoolInfo "Ken Myer" | Select-Object -Expand PrimaryPoolMachinesInPreferredOrder
103103
```
@@ -115,8 +115,8 @@ Indicates the Identity of the user whose user pool information is to be retrieve
115115
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 Domain Services display name (for example, Ken Myer).
116116
You can also reference a user account by using the user's Active Directory distinguished name.
117117

118-
You can use the asterisk (*) wildcard character when using the Display Name as the user Identity.
119-
For example, the Identity "* Smith" returns information for users who have a last name that ends with the string value " Smith".
118+
You can use the asterisk (\*) wildcard character when using the Display Name as the user Identity.
119+
For example, the Identity "\* Smith" returns information for users who have a last name that ends with the string value " Smith".
120120

121121

122122

@@ -158,7 +158,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
158158
159159
###
160160
String or Microsoft.Rtc.Management.ADConnect.Schema.ADUser object.
161-
The Get-CsUserPoolInfo cmdlet accepts a pipelined string value representing the SamAccountName of a user account that has been enabled for Skype for Business Server 2015.
161+
The Get-CsUserPoolInfo cmdlet accepts a pipelined string value representing the SamAccountName of a user account that has been enabled for Skype for Business Server.
162162
The cmdlet also accepts pipelined instances of the Active Directory user object.
163163
164164
## OUTPUTS

0 commit comments

Comments
 (0)