Jump to content

Recommended Posts

Posted

Hi

 

How do you guys manage GPO's accross a mixed windows 7 & 10 environment? I am going to segregate the PC polices by OU i.e. windows 7 clients and windows 10 clients but I have been thinking about user GPO settings i.e. folder redirection as the desktop is different, I know you can use WMI filters but I have read that this can slow the logon down.

Any advice please?

Posted

Use WMI filters. It will mean you can apply a GPO to a specific OS. You also won't have to separate out OU's for computers.

 

Windows 10:

 

SELECT Version,ProductType FROM Win32_OperatingSystem WHERE Version LIKE "10.%" AND ProductType="1"

 

Windows 7:

 

select * from Win32_OperatingSystem where Version like "6.1%" and ProductType = "1"

 

 

https://blogs.technet.microsoft.com/askds/2008/09/11/fun-with-wmi-filters-in-group-policy/

  • Thanks 2
Posted
Use WMI filters. It will mean you can apply a GPO to a specific OS. You also won't have to separate out OU's for computers.

 

Windows 10:

 

SELECT Version,ProductType FROM Win32_OperatingSystem WHERE Version LIKE "10.%" AND ProductType="1"

 

Windows 7:

 

select * from Win32_OperatingSystem where Version like "6.1%" and ProductType = "1"

 

 

https://blogs.technet.microsoft.com/askds/2008/09/11/fun-with-wmi-filters-in-group-policy/

 

Thanks for that, have you ever seen any bootup\logon speed degregation by using WMI?

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...