I build script exporting Mobile ActiveSync devices from AD and importing them into Lansweeper. Usinf the following PowerShell commands:
Get-ActiveSyncDevice | select FriendlyName, DeviceId, DeviceImei, DeviceMobileOperato, DeviceOS, DeviceOSLanguage, DeviceTelephoneNumber, DeviceType, DeviceUserAgent, DeviceModel, FirstSyncTime, UserDisplayName, DeviceAccessState, DeviceAccessStateReason, DeviceAccessControlRule, DeviceActiveSyncVersion, AdminDisplayName, WhenChanged, WhenCreated, WhenChangedUTC, WhenCreatedUTC |export-csv c:\temp\tblMobileDevices.csv
Get-ActiveSyncDevice | Get-ActiveSyncDeviceStatistics | select-object DeviceID, LastSuccessSync, DeviceType, DeviceUserAgent, DeviceWipeSentTime, DeviceWipeRequestTime, DeviceWipeAckTime, LastPingHeartbeat, DeviceModel, DeviceEnableOutboundSMS, Guid, IsRemoteWipeSupported, Status, DeviceAccessState, DeviceAccessStateReason, DeviceAccessControlRule, DevicePolicyApplied, DevicePolicyApplicationStatus, LastDeviceWipeRequestor, DeviceActiveSyncVersion, NumberOfFoldersSynced, SyncStateUpgradeTime |export-csv c:\temp\tblMobileDevicesStats.csv
Maybe this can be made a standard feture of the lansweeper AD scan.