From d30ca671eebb9ffd944624e1250e17be32aa0d22 Mon Sep 17 00:00:00 2001 From: Meghan Stewart <33289333+mestew@users.noreply.github.com> Date: Wed, 25 Jan 2023 08:57:19 -0800 Subject: [PATCH] edits --- windows/deployment/update/deployment-service-drivers.md | 8 +++++++- .../update/deployment-service-expedited-updates.md | 2 +- .../update/deployment-service-feature-updates.md | 9 ++++++++- ...d => wufb-deployment-enroll-device-graph-explorer.md} | 7 ++----- ...> wufb-deployment-find-device-name-graph-explorer.md} | 7 ++++--- 5 files changed, 22 insertions(+), 11 deletions(-) rename windows/deployment/update/includes/{wufb-deployment-enroll-device.md => wufb-deployment-enroll-device-graph-explorer.md} (64%) rename windows/deployment/update/includes/{wufb-deployment-find-device-name.md => wufb-deployment-find-device-name-graph-explorer.md} (90%) diff --git a/windows/deployment/update/deployment-service-drivers.md b/windows/deployment/update/deployment-service-drivers.md index ca38f4ce00..5bfce6c8ad 100644 --- a/windows/deployment/update/deployment-service-drivers.md +++ b/windows/deployment/update/deployment-service-drivers.md @@ -31,5 +31,11 @@ In this tutorial, you will: ## Run queries to identify test devices -[!INCLUDE [Graph Explorer device queries](./includes/wufb-deployment-find-device-name.md)] +[!INCLUDE [Graph Explorer device queries](./includes/wufb-deployment-find-device-name-graph-explorer.md)] +## Enroll devices + +When you enroll devices into driver management, the deployment service becomes the authority for driver updates coming from Windows Update. Devices don't receive drivers from Windows Update until a deployment is manually created or they're added to a driver update policy with approvals. + + +[!INCLUDE [Graph Explorer enroll devices](./includes/wufb-deployment-enroll-device-graph-explorer.md)] \ No newline at end of file diff --git a/windows/deployment/update/deployment-service-expedited-updates.md b/windows/deployment/update/deployment-service-expedited-updates.md index c48849a5d0..c394e42638 100644 --- a/windows/deployment/update/deployment-service-expedited-updates.md +++ b/windows/deployment/update/deployment-service-expedited-updates.md @@ -34,7 +34,7 @@ In this tutorial, you will: ## Run queries to identify test devices -[!INCLUDE [Graph Explorer device queries](./includes/wufb-deployment-find-device-name.md)] +[!INCLUDE [Graph Explorer device queries](./includes/wufb-deployment-find-device-name-graph-explorer.md)] ## Enroll devices diff --git a/windows/deployment/update/deployment-service-feature-updates.md b/windows/deployment/update/deployment-service-feature-updates.md index 690f7857af..7ba0d5c1bd 100644 --- a/windows/deployment/update/deployment-service-feature-updates.md +++ b/windows/deployment/update/deployment-service-feature-updates.md @@ -29,4 +29,11 @@ In this tutorial, you will: ## Run queries to identify test devices -[!INCLUDE [Graph Explorer device queries](./includes/wufb-deployment-find-device-name.md)] \ No newline at end of file +[!INCLUDE [Graph Explorer device queries](./includes/wufb-deployment-find-device-name-graph-explorer.md)] + +## Enroll devices + +As long as a device remains enrolled in feature update management, the device doesn't receive any other feature updates from Windows Update unless explicitly deployed using the deployment service. + + +[!INCLUDE [Graph Explorer enroll devices](./includes/wufb-deployment-enroll-device-graph-explorer.md)] \ No newline at end of file diff --git a/windows/deployment/update/includes/wufb-deployment-enroll-device.md b/windows/deployment/update/includes/wufb-deployment-enroll-device-graph-explorer.md similarity index 64% rename from windows/deployment/update/includes/wufb-deployment-enroll-device.md rename to windows/deployment/update/includes/wufb-deployment-enroll-device-graph-explorer.md index e06d2d6f1f..d1a4b72c67 100644 --- a/windows/deployment/update/includes/wufb-deployment-enroll-device.md +++ b/windows/deployment/update/includes/wufb-deployment-enroll-device-graph-explorer.md @@ -10,12 +10,9 @@ ms.localizationpriority: medium --- -You enroll devices based on the types of updates you want them to recieve.Currently, you can enroll devices to receive feature updates (`feature`) or drivers (`drivers`). You can enroll devices to receive updates from multiple update classifications. - -- As long as a device remains enrolled in feature update management, the device doesn't receive any other feature updates from Windows Update unless explicitly deployed using the deployment service. -- When you enroll devices into driver management, the deployment service becomes the authority for driver updates coming from Windows Update. Devices don't receive drivers from Windows Update until a deployment is manually created or they're added to a driver update policy with approvals. - +You enroll devices based on the types of updates you want them to recieve.Currently, you can enroll devices to receive feature updates (`feature`) or drivers (`driver`). You can enroll devices to receive updates from multiple update classifications. +1. ```rest POST https://graph.microsoft.com/beta/admin/windows/updates/updatableAssets/enrollAssets diff --git a/windows/deployment/update/includes/wufb-deployment-find-device-name.md b/windows/deployment/update/includes/wufb-deployment-find-device-name-graph-explorer.md similarity index 90% rename from windows/deployment/update/includes/wufb-deployment-find-device-name.md rename to windows/deployment/update/includes/wufb-deployment-find-device-name-graph-explorer.md index 6dc2e06236..e985f88f6a 100644 --- a/windows/deployment/update/includes/wufb-deployment-find-device-name.md +++ b/windows/deployment/update/includes/wufb-deployment-find-device-name-graph-explorer.md @@ -12,13 +12,13 @@ ms.localizationpriority: medium You will need at least [Device.Read.All](/graph/permissions-reference#device-permissions) permission to display [device](/graph/api/resources/device) information. -Displays the AzureAD ID and name of all devices: +Displays the AzureAD device ID and name of all devices: ```rest GET https://graph.microsoft.com/v1.0/devices?$select=deviceid,displayName ``` -Displays the AzureAD ID for a device name that starts with `Test`: +Displays the AzureAD device ID for a device name that starts with `Test`: ```rest GET https://graph.microsoft.com/v1.0/devices?$filter=startswith(displayName,'Test')&$select=deviceid,displayName @@ -34,7 +34,7 @@ For the next requests, set the **ConsistencyLevel** header to `eventual`. For mo :::image type="content" source="../media/7512398-deployment-service-graph-modify-header.png" alt-text="Screenshot of the request headers tab in Graph Explorer"::: -Displays the name and operating system version for the device that has the AzureAD ID of `01234567-89ab-cdef-0123-456789abcdef`: +Displays the name and operating system version for the device that has the AzureAD device ID of `01234567-89ab-cdef-0123-456789abcdef`: ```rest GET https://graph.microsoft.com/v1.0/devices?$search="deviceid:01234567-89ab-cdef-0123-456789abcdef"?$select=displayName,operatingSystemVersion @@ -45,3 +45,4 @@ Find devices that don't have virtual machine listed as the model and that have a ```rest GET https://graph.microsoft.com/v1.0/devices?$filter=model ne 'virtual machine' and NOT(manufacturer eq null)&$count=true&$select=deviceid,displayName,operatingSystemVersion ``` +