Topic Last Modified: 2013-07-05

There are multiple ways of referencing a specific user account when calling the Get-CsOnlineUser cmdlet. You can use the user’s Active Directory Domain Services display name:

Copy Code
Get-CsOnlineUser -Identity "Ken Myer"

You can use the user’s SIP address:

Copy Code
Get-CsOnlineUser -Identity "sip:kenmyer@litwareinc.com"

You can use the user’s user principal name (UPN):

Copy Code
Get-CsOnlineUser -Identity "kenmyer@litwareinc.com"

See Also