Comment filtrer une stratégie de groupe pour qu’elle ne s’applique qu’à Vista ou Server 2008
Pour Vista
SELECT Version, ProductType
FROM Win32_OperatingSystem
WHERE Version >= ‘6’ AND ProductType = ‘1’
Pour Server 2008
SELECT Version, ProductType
FROM Win32_OperatingSystem WHERE
Version >= ‘6’ AND ProductType = ‘3’
Astucieux et bien pratique!