chazzy2501 Posted November 25, 2016 Posted November 25, 2016 I've added the "OR VERSION LIKE '6.4%" to the WMI but still get a false wmi filter on the GPO do I need to update the OperatingsystemSKU for education edition as well? current Filter Select * from Win32_OperatingSystem WHERE (ProductType = 3) OR ((Version LIKE '6.2%' OR Version LIKE '6.3%' OR VERSION LIKE '6.4%') AND (OperatingSystemSKU = 4 OR OperatingSystemSKU = 27 OR OperatingSystemSKU = 72 OR OperatingSystemSKU = 84)) OR (Version LIKE '6.1%' AND (OperatingSystemSKU = 4 OR OperatingSystemSKU = 27 OR OperatingSystemSKU = 70 OR OperatingSystemSKU = 1 OR OperatingSystemSKU = 28 OR OperatingSystemSKU = 71))
3s-gtech Posted November 25, 2016 Posted November 25, 2016 The version for Windows 10 is 10.x, not 6.4. Your WMI filter will need that.
chazzy2501 Posted November 25, 2016 Author Posted November 25, 2016 can I put in '10.x' or '10.0' and do I need to add a OperatingSystemSKU = 121 for education edition..
3s-gtech Posted November 25, 2016 Posted November 25, 2016 If you don't run any other version other than edu, I'd forget using that at all - the more complex you make the query, the less likely it is to work. Use 10.x. https://msdn.microsoft.com/en-us/library/windows/desktop/ms724358(v=vs.85).aspx
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now