mirror of
https://github.com/MicrosoftDocs/windows-itpro-docs.git
synced 2025-05-13 22:07:22 +00:00
edits
This commit is contained in:
parent
8af7b32e0e
commit
a081b9da82
@ -15,13 +15,13 @@ ms.date: 02/14/2023
|
|||||||
<!--7260403, 7512398-->
|
<!--7260403, 7512398-->
|
||||||
***(Applies to: Windows 11 & Windows 10)***
|
***(Applies to: Windows 11 & Windows 10)***
|
||||||
|
|
||||||
|
|
||||||
In this tutorial, you will:
|
In this tutorial, you will:
|
||||||
> [!div class="checklist"]
|
> [!div class="checklist"]
|
||||||
> * Do X
|
> * [Open Graph Explorer](#open-graph-explorer)
|
||||||
> * Do Y
|
> * [Run queries to identify test devices](#run-queries-to-identify-test-devices)
|
||||||
|
> * [Enroll devices](#enroll-devices)
|
||||||
|
> * Do Z
|
||||||
> * Do Z
|
> * Do Z
|
||||||
|
|
||||||
|
|
||||||
## Open Graph Explorer
|
## Open Graph Explorer
|
||||||
|
|
||||||
|
@ -17,8 +17,8 @@ ms.date: 02/14/2023
|
|||||||
|
|
||||||
In this tutorial, you will:
|
In this tutorial, you will:
|
||||||
> [!div class="checklist"]
|
> [!div class="checklist"]
|
||||||
> * Do X
|
> * [Open Graph Explorer](#open-graph-explorer)
|
||||||
> * Do Y
|
> * [Run queries to identify test devices](#run-queries-to-identify-test-devices)
|
||||||
> * Do Z
|
> * Do Z
|
||||||
|
|
||||||
|
|
||||||
@ -34,4 +34,15 @@ In this tutorial, you will:
|
|||||||
## Run queries to identify test devices
|
## Run queries to identify test devices
|
||||||
|
|
||||||
<!--Using include for Graph Explorer device queries-->
|
<!--Using include for Graph Explorer device queries-->
|
||||||
[!INCLUDE [Graph Explorer device queries](./includes/wufb-deployment-find-device-name.md)]
|
[!INCLUDE [Graph Explorer device queries](./includes/wufb-deployment-find-device-name.md)]
|
||||||
|
|
||||||
|
## Enroll devices
|
||||||
|
|
||||||
|
|
||||||
|
## List updates in the catalog that can be expedited
|
||||||
|
|
||||||
|
1. Query the catalog to find updates that can be expedited, For example, query for all security updates that can be deployed as expedited updates by the deployment service. Using `$top=3` and ordering by `ReleaseDateTimeshows` displays the three most current updates.
|
||||||
|
|
||||||
|
```
|
||||||
|
GET https://graph.microsoft.com/beta/admin/windows/updates/catalog/entries?$filter=isof('microsoft.graph.windowsUpdates.qualityUpdateCatalogEntry') and microsoft.graph.windowsUpdates.qualityUpdateCatalogEntry/isExpeditable eq true&$orderby=releaseDateTime desc&$top=3
|
||||||
|
```
|
@ -17,8 +17,8 @@ ms.date: 02/14/2023
|
|||||||
|
|
||||||
In this tutorial, you will:
|
In this tutorial, you will:
|
||||||
> [!div class="checklist"]
|
> [!div class="checklist"]
|
||||||
> * Do X
|
> * [Open Graph Explorer](#open-graph-explorer)
|
||||||
> * Do Y
|
> * [Run queries to identify test devices](#run-queries-to-identify-test-devices)
|
||||||
> * Do Z
|
> * Do Z
|
||||||
|
|
||||||
## Open Graph Explorer
|
## Open Graph Explorer
|
||||||
|
@ -0,0 +1,40 @@
|
|||||||
|
---
|
||||||
|
author: mestew
|
||||||
|
ms.author: mstewart
|
||||||
|
manager: aaroncz
|
||||||
|
ms.technology: itpro-updates
|
||||||
|
ms.prod: windows-client
|
||||||
|
ms.topic: include
|
||||||
|
ms.date: 02/14/2023
|
||||||
|
ms.localizationpriority: medium
|
||||||
|
---
|
||||||
|
<!--This file is shared by deployment-service-drivers.md, deployment-service-expedited-updates.md, and the deployment-service-feature-updates.md articles. Headings may be driven by article context. 7512398 -->
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
|
||||||
|
```rest
|
||||||
|
|
||||||
|
POST https://graph.microsoft.com/beta/admin/windows/updates/updatableAssets/enrollAssets
|
||||||
|
Content-Type: application/json
|
||||||
|
{
|
||||||
|
"updateCategory": "driver",
|
||||||
|
"assets": [
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.windowsUpdates.azureADDevice",
|
||||||
|
"id": "01234567-89ab-cdef-0123-456789abcdef"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.windowsUpdates.azureADDevice",
|
||||||
|
"id": "01234567-89ab-cdef-0123-456789abcde0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@odata.type": "#microsoft.graph.windowsUpdates.azureADDevice",
|
||||||
|
"id": "01234567-89ab-cdef-0123-456789abcde1"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
```
|
@ -2,23 +2,27 @@
|
|||||||
author: mestew
|
author: mestew
|
||||||
ms.author: mstewart
|
ms.author: mstewart
|
||||||
manager: aaroncz
|
manager: aaroncz
|
||||||
ms.prod: w10
|
ms.technology: itpro-updates
|
||||||
ms.collection: M365-modern-desktop
|
ms.prod: windows-client
|
||||||
ms.topic: include
|
ms.topic: include
|
||||||
ms.date: 08/18/2022
|
ms.date: 02/14/2023
|
||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
---
|
---
|
||||||
<!--This file is shared by deployment-service-drivers.md, deployment-service-expedited-updates.md, and the deployment-service-feature-updates.md articles. Headings may be driven by article context. 7512398 -->
|
<!--This file is shared by deployment-service-drivers.md, deployment-service-expedited-updates.md, and the deployment-service-feature-updates.md articles. Headings may be driven by article context. 7512398 -->
|
||||||
|
|
||||||
You will need at least [Device.Read.All](/graph/permissions-reference#device-permissions) permission to display [device](/graph/api/resources/device) information.
|
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:</br>
|
Displays the AzureAD ID and name of all devices:
|
||||||
`GET https://graph.microsoft.com/v1.0/devices?$select=deviceid,displayName`
|
|
||||||
|
|
||||||
Displays the AzureAD ID for a device name that starts with `Test`:</br>
|
```rest
|
||||||
`GET https://graph.microsoft.com/v1.0/devices?$filter=startswith(displayName, 'Test')&$select=deviceid,displayName`
|
GET https://graph.microsoft.com/v1.0/devices?$select=deviceid,displayName
|
||||||
|
```
|
||||||
|
|
||||||
|
Displays the AzureAD 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
|
||||||
|
```
|
||||||
|
|
||||||
### Add a request header
|
### Add a request header
|
||||||
|
|
||||||
@ -30,9 +34,14 @@ 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":::
|
:::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`:</br>
|
Displays the name and operating system version for the device that has the AzureAD ID of `01234567-89ab-cdef-0123-456789abcdef`:
|
||||||
`GET https://graph.microsoft.com/v1.0/devices?$search="deviceid:01234567-89ab-cdef-0123-456789abcdef"?$select=displayName,operatingSystemVersion`
|
|
||||||
|
|
||||||
Find devices that don't have virtual machine listed as the model and that have a manufacturer listed: </br>
|
```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`
|
GET https://graph.microsoft.com/v1.0/devices?$search="deviceid:01234567-89ab-cdef-0123-456789abcdef"?$select=displayName,operatingSystemVersion
|
||||||
|
```
|
||||||
|
|
||||||
|
Find devices that don't have virtual machine listed as the model and that have a manufacturer listed:
|
||||||
|
|
||||||
|
```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
|
||||||
|
```
|
||||||
|
@ -2,10 +2,10 @@
|
|||||||
author: mestew
|
author: mestew
|
||||||
ms.author: mstewart
|
ms.author: mstewart
|
||||||
manager: aaroncz
|
manager: aaroncz
|
||||||
ms.prod: w10
|
ms.technology: itpro-updates
|
||||||
ms.collection: M365-modern-desktop
|
ms.prod: windows-client
|
||||||
ms.topic: include
|
ms.topic: include
|
||||||
ms.date: 08/18/2022
|
ms.date: 02/14/2023
|
||||||
ms.localizationpriority: medium
|
ms.localizationpriority: medium
|
||||||
---
|
---
|
||||||
<!--This file is shared by deployment-service-drivers.md, deployment-service-expedited-updates.md, and the deployment-service-feature-updates.md articles. Headings may be driven by article context. 7512398 -->
|
<!--This file is shared by deployment-service-drivers.md, deployment-service-expedited-updates.md, and the deployment-service-feature-updates.md articles. Headings may be driven by article context. 7512398 -->
|
||||||
|
Loading…
x
Reference in New Issue
Block a user