Exchange 2010 list activesync Apple devices

 

Few days ago, we wrote about problems with Apple mobile devices updated to iOS6, and also we wrote how to check mobile devices connected to mailboxes in Exchange 2010.
Below you can find link to last post:

Exchange 2010 ActiveSync Devices list

 

Now because lot of people have problems with mobile devices with iOS6 connected to mailboxes on Exchange 2010, we want to show you how you can get check how many mobile devices are connected to mailboxes in your Exchange 2010 environment.

To get list of all mobile devices connected to mailbox JSmith use below command:

Get-ActiveSyncDeviceStatistics -Mailbox JSmith | ft DeviceType, DeviceUserAgent, LastSuccessSync

 

Now we need to get all mailboxes from MB01 server and get list of all mobile devices which were used to connect to those mailboxes.
To do this we need to use both command:  Get-Mailbox and Get-ActiveSyncDeviceStatistics

If we want to get all mailboxes from MB01 server:

$MBXs = Get-Mailbox -server MB01 -RecipientTypeDetails UserMailbox –ResultSize Unlimited -Filter {HiddenFromAddressListsEnabled -eq $false}

 

Now we need to check mobile devices:

Continue reading

Exchange 2010 ActiveSync Devices list

 

Exchange 2010 Get list of mobile devices with activesync for user:

Sometimes we want to know what kind of mobile devices uses ours users.

If we want to check only one user it’s not a problem. We can use Powershell cmdlet:

Get-ActiveSyncDeviceStatistics

If we want to know what activesync devices uses John Smith we need to run:

Get-ActiveSyncDeviceStatistics -Mailbox "John Smith" | fl

or if we want to specify the output:

Get-ActiveSyncDeviceStatistics -Mailbox "John Smith" | Select-Object @{n="Mailbox";e={$mailbox}}, LastSuccessSync, Status, DeviceID, DeviceType, DeviceUserAgent, DeviceModel, DeviceIMEI, DeviceOS

 

 

Exchange 2010 get list of all users activesync devices

Unfortunatelly mostly we want to get list of all mobile devices used by users.

This is not so easy because every user can use more than one mobile device: cell phones, tablets and other devices.

Continue reading