You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: defender-endpoint/migrate-devices-streamlined.md
+24-8Lines changed: 24 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ ms.collection:
13
13
- tier1
14
14
ms.topic: how-to
15
15
ms.subservice: onboard
16
-
ms.date: 05/09/2024
16
+
ms.date: 03/06/2025
17
17
---
18
18
19
19
# Migrate devices to use the streamlined connectivity method
@@ -31,12 +31,10 @@ This article describes how to migrate (reonboard) devices that had been previous
31
31
In most cases, full device offboarding isn't required when reonboarding. You can run the updated onboarding package and reboot your device to switch connectivity over. See the following information for details on individual operating systems.
32
32
33
33
> [!IMPORTANT]
34
-
> Limitations and known issues:
35
-
>
36
-
> - We found a back-end issue with populating the `ConnectivityType` column in the `DeviceInfo table` in advanced hunting so that you can track migration progress. We aim to resolve this issue as soon as possible.
37
-
> - For device migrations (reonboarding): Offboarding is not required to switch over to streamlined connectivity method. Once the updated onboarding package is run, a full device reboot is required for Windows devices and a service restart for macOS and Linux. For more information, see the details included in this article.
38
-
> - Windows 10 versions 1607, 1703, 1709, and 1803 do not support reonboarding. Offboard first and then onboard using the updated package. These versions also require a longer URL list.
39
-
> - Devices running the MMA agent are not supported and must continue using the MMA onboarding method.
34
+
> Limitations and known issues:- For device migrations (reonboarding): Offboarding is not required to switch over to streamlined connectivity method. Once the updated onboarding package is run, a full device reboot is required for Windows devices and a service restart for macOS and Linux. For more information, see the details included in this article.
35
+
- Windows 10 versions 1607, 1703, 1709, and 1803 do not support reonboarding. Offboard first and then onboard using the updated package. These versions also require a longer URL list.
36
+
- Devices running the MMA agent are not supported and must continue using the MMA onboarding method.
37
+
40
38
41
39
## Migrating devices using the streamlined method
42
40
@@ -333,7 +331,25 @@ For example: `https:mdav.us.endpoint.security.microsoft/com/storage`
333
331
334
332
### Tracking with advanced hunting in Microsoft Defender XDR
335
333
336
-
Follow the same instructions as for Windows.
334
+
To view all devices (limit 30k) and their most recently reported connectivity type:
335
+
336
+
337
+
```kusto
338
+
DeviceInfo
339
+
| where OnboardingStatus == "Onboarded"
340
+
| summarize arg_max(ConnectivityType, Timestamp) by DeviceName
341
+
```
342
+
343
+
To view a count of Devices by OSPlatform and their connectivity type in a bar chart:
344
+
345
+
346
+
```kusto
347
+
DeviceInfo
348
+
| where OnboardingStatus == "Onboarded"
349
+
| summarize arg_max(ConnectivityType, Timestamp, OSPlatform) by DeviceName
350
+
| summarize count() by OSPlatform, ConnectivityType
351
+
| render columnchart
352
+
```
337
353
338
354
### Use Defender for Endpoint Client Analyzer (cross-platform) to validate connectivity for newly migrated endpoints
0 commit comments