Every administrator of exchange server happy with the GUI microsoft provided, but still command line is the best and efective way to get information from exchange.
We can scripting and automate the way we get information and dump it to a file as we like.
Come the Power Shell for exchange to the rescue. We can use Power Shell to query the exchange server to get any information we need which already provided.
Here we need to get the exchange user which using mobile device to access their inbox. The simple command are :
Get-Mailbox -ResultSize:Unlimited | ForEach
{Get-ActiveSyncDeviceStatistics -Mailbox:$_.Identity} | Where
{$_.LastSuccessSync...