
Originally Posted by
Chuckster
I'm doing that, too - creating a new GPO altogether for Workstations.
Do you apply WMI filtering? If so, what do you have for your Windows 7?
I use 4 different WMI filters. They are as follows: Windows 2k/XP PCs, Windows Vista/7 PCs, Windows 7 x86, and Windows 7 x64.
Win2k/XP PCs
Code:
root\CIMv2
select * from Win32_OperatingSystem where (Version like "5.%") and ProductType = "1"
Win7/Vista PCs
Code:
root\CIMv2
select * from Win32_OperatingSystem where Version like "6.%" and ProductType = "1"
Win7 x86
Code:
root\CIMv2
SELECT * FROM Win32_OperatingSystem WHERE Version like "6.1%" AND ProductType = "1" AND NOT OSArchitecture = "64-bit"
Win7 x64
Code:
root\CIMv2
SELECT * FROM Win32_OperatingSystem WHERE Version like "6.1%" AND ProductType = "1" AND OSArchitecture = "64-bit"
As far as GPOs and such, I have various different ones that do a lot of different things and I don't mind posting them, but how strict or lenient of a policy do you want to see?