Topic Last Modified: 2013-07-05

To return information about all your users who have been enabled for Lync Online, call the Get-CsOnlineUser cmdlet without any additional parameters:

Copy Code
Get-CsOnlineUser

To return information for a single, randomly-selected user (for example, to use this account for test purposes), call the Get-CsOnlineUser cmdlet and set the ResultSize parameter to 1:

Copy Code
Get-CsOnlineUser -ResultSize 1

That causes the Get-CsOnlineUser cmdlet to return information for just one user, regardless of how many users you have in your organization. To return information for five users, set the value of the ResultSize parameter to 5:

Copy Code
Get-CsOnlineUser -ResultSize 5

See Also