I've got a 2 GPOs, and which one of the two is applied is supposed to be determined by a WMI filter that detects what OS is being run. From memory (not in front of me right now), one of the WMI queries should be true for Vista, 20008, 7 and 2008R2:
select * from Win32_OperatingSystem where Version like "6.%"
and the other WMI query should be true for XP and 2k3:
select * from Win32_OperatingSystem where (Version like "5.1%" or Version like "5.2%")
When I ran the Group Policy Modeling wizard, both GPOs were applied to a Windows 7 machine.
I can give more detail when I have that network in front of me if that would help...but does anyone have an idea why this isn't working?
select * from Win32_OperatingSystem where Version like "6.%"
and the other WMI query should be true for XP and 2k3:
select * from Win32_OperatingSystem where (Version like "5.1%" or Version like "5.2%")
When I ran the Group Policy Modeling wizard, both GPOs were applied to a Windows 7 machine.
I can give more detail when I have that network in front of me if that would help...but does anyone have an idea why this isn't working?