mirror of
https://github.com/MicrosoftDocs/windows-itpro-docs.git
synced 2025-05-14 14:27:22 +00:00
Merge pull request #9901 from MaratMussabekov/patch-284
added Windows 10 multi-session
This commit is contained in:
commit
f67cee668d
@ -14,7 +14,7 @@ manager: dansimp
|
|||||||
audience: ITPro
|
audience: ITPro
|
||||||
ms.collection: M365-security-compliance
|
ms.collection: M365-security-compliance
|
||||||
ms.topic: conceptual
|
ms.topic: conceptual
|
||||||
ms.date: 05/25/2017
|
ms.date: 08/16/2021
|
||||||
ms.technology: mde
|
ms.technology: mde
|
||||||
---
|
---
|
||||||
|
|
||||||
@ -40,17 +40,15 @@ First, create the WMI filter and configure it to look for a specified version (o
|
|||||||
|
|
||||||
1. Open the Group Policy Management console.
|
1. Open the Group Policy Management console.
|
||||||
|
|
||||||
2. In the navigation pane, expand **Forest:** *YourForestName*, expand **Domains**, expand *YourDomainName*, and then click **WMI Filters**.
|
2. In the navigation pane, expand **Forest:** *YourForestName*, expand **Domains**, expand *YourDomainName*, and then select **WMI Filters**.
|
||||||
|
|
||||||
3. Click **Action**, and then click **New**.
|
3. Select **Action**, and then select **New**.
|
||||||
|
|
||||||
4. In the **Name** text box, type the name of the WMI filter.
|
4. In the **Name** text box, type the name of the WMI filter. Be sure to use a name that clearly indicates the purpose of the filter. Check to see if your organization has a naming convention.
|
||||||
|
|
||||||
>**Note:** Be sure to use a name that clearly indicates the purpose of the filter. Check to see if your organization has a naming convention.
|
|
||||||
|
|
||||||
5. In the **Description** text box, type a description for the WMI filter. For example, if the filter excludes domain controllers, you might consider stating that in the description.
|
5. In the **Description** text box, type a description for the WMI filter. For example, if the filter excludes domain controllers, you might consider stating that in the description.
|
||||||
|
|
||||||
6. Click **Add**.
|
6. Select **Add**.
|
||||||
|
|
||||||
7. Leave the **Namespace** value set to **root\\CIMv2**.
|
7. Leave the **Namespace** value set to **root\\CIMv2**.
|
||||||
|
|
||||||
@ -66,7 +64,7 @@ First, create the WMI filter and configure it to look for a specified version (o
|
|||||||
... where Version like "6.1%" or Version like "6.2%"
|
... where Version like "6.1%" or Version like "6.2%"
|
||||||
```
|
```
|
||||||
|
|
||||||
To restrict the query to only clients or only servers, add a clause that includes the ProductType parameter. To filter for client operating systems only, such as Windows 8 or Windows 7, use only ProductType="1". For server operating systems that are not domain controllers, use ProductType="3". For domain controllers only, use ProductType="2". This is a useful distinction, because you often want to prevent your GPOs from being applied to the domain controllers on your network.
|
To restrict the query to only clients or only servers, add a clause that includes the ProductType parameter. To filter for client operating systems only, such as Windows 8 or Windows 7, use only ProductType="1". For server operating systems that are not domain controllers and for Windows 10 multi-session, use ProductType="3". For domain controllers only, use ProductType="2". This is a useful distinction, because you often want to prevent your GPOs from being applied to the domain controllers on your network.
|
||||||
|
|
||||||
The following clause returns **true** for all devices that are not domain controllers:
|
The following clause returns **true** for all devices that are not domain controllers:
|
||||||
|
|
||||||
@ -92,9 +90,9 @@ First, create the WMI filter and configure it to look for a specified version (o
|
|||||||
select * from Win32_OperatingSystem where Version like "10.%" and ProductType="3"
|
select * from Win32_OperatingSystem where Version like "10.%" and ProductType="3"
|
||||||
```
|
```
|
||||||
|
|
||||||
9. Click **OK** to save the query to the filter.
|
9. Select **OK** to save the query to the filter.
|
||||||
|
|
||||||
10. Click **Save** to save your completed filter.
|
10. Select **Save** to save your completed filter.
|
||||||
|
|
||||||
> [!NOTE]
|
> [!NOTE]
|
||||||
> If you're using multiple queries in the same WMI filter, these queries must all return **TRUE** for the filter requirements to be met and for the GPO to be applied.
|
> If you're using multiple queries in the same WMI filter, these queries must all return **TRUE** for the filter requirements to be met and for the GPO to be applied.
|
||||||
@ -105,8 +103,8 @@ After you have created a filter with the correct query, link the filter to the G
|
|||||||
|
|
||||||
1. Open the Group Policy Management console.
|
1. Open the Group Policy Management console.
|
||||||
|
|
||||||
2. In the navigation pane, find and then click the GPO that you want to modify.
|
2. In the navigation pane, find and then select the GPO that you want to modify.
|
||||||
|
|
||||||
3. Under **WMI Filtering**, select the correct WMI filter from the list.
|
3. Under **WMI Filtering**, select the correct WMI filter from the list.
|
||||||
|
|
||||||
4. Click **Yes** to accept the filter.
|
4. Select **Yes** to accept the filter.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user