You plan to simplify the organizational unit (OU) structure for a company. You must consolidate all member servers in the domain to a single OU named
MemberServers.
You need to apply Group Policy settings for servers that meet the following criteria:
Server operating systems: Windows Server 2012
Server hardware platform: 64-bit
Server memory: less than 16 6B of RAM
Solution: You create a WMI filter action that includes the following query:
Does this meet the goal?
A.
Yes
B.
No
Correct: B
ProductType=”1″ -> Client operating systems
ProductType=”2″ -> Domain controllers
ProductType=”3″ -> Servers that are not domain controllers
The line Win32_PhysicalMemory > 16000000000 means that the server memory must be larger than 16
GB. The VMI-filter should include the line Win32_PhysicalMemory < 16000000000.Note: The other criteria were OK:
Win32_operatingsystem version number 6.2 indicates that it is either Windows 8 or Windows Server
2012.
Win32_operatingsystem ProductType 3 indicates that it is an Server Operating system, but not a domain
controller.
OSArchitecture =”64-bit” is also OK: the server hardware platform should be 64-bit.
Updated List of OS Version Queries for WMI Filters
http://www.nogeekleftbehind.com/2013/09/10/updated-list-of-os-version-queries-for-wmi-filters/
Then this query is wrong for two reasons:
1) “Win32_PhysicalMemory > 16000000000” is the opposite of what we want, as you noted
2) ProductType = “1” means workstations, but we want servers.