Exchange 2013, CU6, CAS3 X MBX4
I'd like to get the active users' connection(count) t server, please tell me how to do powershell command
And how to check them by using resource monitor.
Technology Tips and News
Exchange 2013, CU6, CAS3 X MBX4
I'd like to get the active users' connection(count) t server, please tell me how to do powershell command
And how to check them by using resource monitor.
This can be handy:
Hi,
We can use Get-counter cmdlet to get real-time performance counter data from local and remote computers:
Owa
Get-Counter "\MSExchange OWA\Current Unique Users" -ComputerName cas3
RPC
Get-Counter "\MSExchange RpcClientAccess\User Count" -ComputerName cas3
ActiveSync
Get-Counter "\MSExchange ActiveSync\Current Requests" -ComputerName cas3
Here is the similar thread for your reference: