Topic Last Modified: 2013-08-15

In Lync Online, there are a number of different ways to reference an individual user Identity:

The following cmdlets accept a user Identity:

Note that you do not need to specify a user Identity when calling one of the Get-Cs cmdlets. In this case, the cmdlets return all the instances of the specified item. For example, this command returns information about all the users who have been enabled for Lync Online:

Copy Code
Get-CsOnlineUser

The Identity parameter is required only if you want to return information for a specific user:

Copy Code
Get-CsOnlineUser -Identity "Ken Myer"

See Also