Lync Enabled user count by Pool

We have two Lync 2010 Pools in under one SIP domain. Now we would like to know the Lync enabled user count of each pool

Please

August 28th, 2015 11:04pm

Hi

You could do something like this

$p = Get-CsPool

foreach ($pool in $p){

$users = Get-CsUser | where {$_.RegistrarPool -eq $pool.Identity}

$c = $users.Count

write "Pool: $($_.Identity)  - User Count: $($c)"

}


not been able to test this but should be correct

thanks

Free Windows Admin Tool Kit Click here and download it now
August 29th, 2015 3:42am

Hi,

You could also open Lync Server Control Panel--Users--Search--+ Add filter, "And" choose the "Registrar pool", and "Equal to" choose the Lync Server pool of your Lync environment.

Best Regards

August 31st, 2015 3:31am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics