Skip to content

Commit 8e733fe

Browse files
authored
Merge pull request #3032 from grbray/docs-editor/migrate-devices-streamlined-1741211494
2 parents 2ed7734 + e8ceb3d commit 8e733fe

File tree

1 file changed

+24
-8
lines changed

1 file changed

+24
-8
lines changed

defender-endpoint/migrate-devices-streamlined.md

Lines changed: 24 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.collection:
1313
- tier1
1414
ms.topic: how-to
1515
ms.subservice: onboard
16-
ms.date: 05/09/2024
16+
ms.date: 03/06/2025
1717
---
1818

1919
# Migrate devices to use the streamlined connectivity method
@@ -31,12 +31,10 @@ This article describes how to migrate (reonboard) devices that had been previous
3131
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.
3232

3333
> [!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+
4038

4139
## Migrating devices using the streamlined method
4240

@@ -333,7 +331,25 @@ For example: `https:mdav.us.endpoint.security.microsoft/com/storage`
333331

334332
### Tracking with advanced hunting in Microsoft Defender XDR
335333

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+
```
337353

338354
### Use Defender for Endpoint Client Analyzer (cross-platform) to validate connectivity for newly migrated endpoints
339355

0 commit comments

Comments
 (0)