Q. How can I find all Exchange ActiveSync (EAS) users?

John Savill

September 15, 2008

1 Min Read
ITPro Today logo in a gray background | ITPro Today

A. You can use the following command to display all users who have an EAS partnership established for the specified server:

Get-Mailbox -server  -ResultSize:Unlimited |ForEach {Get-ActiveSyncDeviceStatistics -Mailbox:$_.Identity} |ft identity,devicemodel,LastSuccessSync

(You should type the previous command on one line in PowerShell.)

To view all EAS users for every server, simply remove the -server parameter.

About the Author

Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.

You May Also Like