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.
September 15, 2008
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.
You May Also Like