How to list all Lync users with LineURI defined
Just start powershell as admin and run this command:
Get-CsUser -Filter {LineURI -ne $Null} | Select-Object DisplayName,
LineURI >telusers.csv
The resulting file telusers.csv will contain all users with LineURI defined.
Comments
Post a Comment