Link to home
Start Free TrialLog in
Avatar of sirichaiphumirat
sirichaiphumiratFlag for United States of America

asked on

users outlook version on exchange 2010

Is there a way within exchange 2010, Powershell or EMC to find out what version of outlook users are using to connect to exchange?

We have about 3000 employees and all are using outlook versions 2010 - 2016. We are trying to keep it all uniformed.
Avatar of Raheman M. Abdul
Raheman M. Abdul
Flag of United Kingdom of Great Britain and Northern Ireland image

try this
& “C:\Program Files (x86)\Log Parser 2.2\LogParser.exe” “SELECT client-software,client-software-version,client-mode,count(*) FROM ‘\\path\c$\Program Files\Microsoft\Exchange Server\V14\Logging\RPC Client Access\RCA_*.LOG’ group by client-software,client-software-version,client-mode” –nSkipLines:4 -i:CSV -rtp:-1 

Open in new window

this is available in technical gallery. you can try that as well:
https://gallery.technet.microsoft.com/office/Determine-all-outlook-d43bd71f
it works for exchange 2010 and 2013
ASKER CERTIFIED SOLUTION
Avatar of Ivan
Ivan
Flag of Serbia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
If you don't want to use Powershell, you can use the Exchange User Monitor tool:

https://technet.microsoft.com/en-us/library/bb508855(v=exchg.65).aspx
Avatar of sirichaiphumirat

ASKER

thank you