Currently have a requirement to only apply certain Group Policies to Windows 7 Enterprise machines only, the policies must not be applied to any other edition of Windows 7. I have therefore implemented the following WMI filter which will ensure that the policies are only applied to Windows 7 Enterprise computers.

Select * from Win32_OperatingSystem where Caption = "Microsoft Windows 7 Enterprise"

The same result can also be achieved by using the following WMI Filter.

Select * from Win32_OperatingSystem where Version like "6.1%" and ProductType = "1" and OperatingSystemSKU = "4"

About the author