cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Esben_D
Lansweeper Employee
Lansweeper Employee
The report below gives back a list of Office 365 active sync devices.

The report will only list assets when the following criteria are met:
  • You have Lansweeper 7.1 or higher.
  • There is Office 365 active sync device data scanned.

Select Top 1000000 'arrow_refresh.png' As Icon,
Case
When tblIntuneDevice.ManagedDeviceName Is Null Then
tblO365ActiveSyncDevice.DeviceFriendlyName
Else tblIntuneDevice.ManagedDeviceName
End As DeviceAssetName,
tblIntuneDevice.AssetId As DeviceAssetId,
tblO365ActiveSyncDevice.DeviceModel,
tblO365ActiveSyncDevice.DeviceOs,
tblO365ActiveSyncDevice.ClientType,
tblO365ActiveSyncDevice.DeviceAccessState As AccessState,
tblO365ActiveSyncDevice.FirstSyncTime,
tblO365ActiveSyncDevice.LastSuccessSync,
tblO365ActiveSyncDevice.Mailbox,
tblO365Organization.DisplayName As Organization,
tblO365Organization.TenantId
From tblO365ActiveSyncDevice
Inner Join tblO365Organization On tblO365Organization.OrganizationId =
tblO365ActiveSyncDevice.OrganizationId
Left Outer Join tblIntuneDevice On tblIntuneDevice.Imei =
tblO365ActiveSyncDevice.DeviceImei
Order By DeviceAssetName
0 REPLIES 0