Answered by:
outlook clients connect to which CAS server

Question
-
I cannot find any command to show me which users are currently connected to Which Client Access server.Wednesday, January 25, 2012 5:52 PM
Answers
-
get-logonstatistics will show this.
http://technet.microsoft.com/en-us/library/bb124415.aspx
Get-LogonStatistics- Marked as answer by Fiona_LiaoModerator Wednesday, February 1, 2012 9:58 AM
Saturday, January 28, 2012 9:28 PM -
- Proposed as answer by Fiona_LiaoModerator Friday, January 27, 2012 5:59 AM
- Marked as answer by Fiona_LiaoModerator Wednesday, February 1, 2012 9:58 AM
Friday, January 27, 2012 5:59 AMModerator
All replies
-
Exchange 2007 or 2010?
Karl
My Blog: http://unlockpowershell.wordpress.com
My Book: Windows PowerShell 2.0 Bible
My E-mail: -join ("6B61726C6D69747363686B65406D742E6E6574"-split"(?<=\G.{2})",19|%{[char][int]"0x$_"})Wednesday, January 25, 2012 11:29 PM -
- Proposed as answer by Fiona_LiaoModerator Friday, January 27, 2012 5:59 AM
- Marked as answer by Fiona_LiaoModerator Wednesday, February 1, 2012 9:58 AM
Friday, January 27, 2012 5:59 AMModerator -
get-logonstatistics will show this.
http://technet.microsoft.com/en-us/library/bb124415.aspx
Get-LogonStatistics- Marked as answer by Fiona_LiaoModerator Wednesday, February 1, 2012 9:58 AM
Saturday, January 28, 2012 9:28 PM -
This seems to only work on a Mailbox Server only. I would like to see which outlook clients are connected to a particular CAS serverFriday, November 2, 2012 2:18 PM
-
Hi Fiona
You may find the clients connected from the CAS server task manager and the resource monitor, Network and select the Microsoft RPC Client access service.exe and Under the TCP connection you can see the remote address who all connected to this CAS server.
Arul
Thursday, January 31, 2013 7:55 AM -
Hi Fiona Liao,
If its a RPC/HTTP client, Yes you can easily find the users Client IP address find from the client access server perfomance monitor even thoug if the CAS server is in an array.
If you want to find from the out look client/ OWA client side, There is a n alternate workaround....
Refere to the below link.
Please let us know if we can find it thru a PS script,,,,
Regards
Arul
Monday, February 11, 2013 7:52 AM -
Get-Counter "\MSExchange ActiveSync\Current Requests" -ComputerName "servername"
Get-Counter "\MSExchange RpcClientAccess\User Count" -ComputerName "servername"
Get-Counter "\MSExchange OWA\Current Unique Users" -ComputerName "servername"
- Proposed as answer by dirkbucket Sunday, April 21, 2013 7:25 PM
Saturday, April 20, 2013 1:03 PM -
Hi,
I used below command to get which CAS server does outlook user connected.
$user="<user display name"
Get-LogonStatistics $user |Sort-Object LastAccessTime -Descending |?{$_.ApplicationId -Like "Client=MSExchangeRPC*"}|Select ClientName,ClientVersion,Latency,ApplicationId,LastAccessTime,CurrentOpenFolders |ft
Regards
K Gopi
Regards Gopi K
- Proposed as answer by GOPI K Tuesday, December 3, 2013 5:51 AM
Tuesday, December 3, 2013 5:51 AM -
Gopi nice that gave me the information I needed on an exchange 2010 cas array. Thanks.Wednesday, July 16, 2014 12:44 PM