The PlatformApplicabilityCondition element, in Configuration Manager 2007, annotates the Windows Operating System platform for which this configuration item is applicable. It contains nested Query1 and Query2 elements which are used to determine whether the configuration item is applicable on a targeted system. Configuration items are evaluated if they satisfy at least one PlatformApplicabilityCondition.

<xs:element name="PlatformApplicabilityCondition"
	type="PlatformApplicabilityConditionType"
 />


Example:
---------
<PlatformApplicabilityCondition DisplayName="All x86 Windows XP" MaxVersion="5.10.9999.9999" MinVersion="5.10.0000.0" Name="Win NT" Platform="I386">
  <Query1>SELECT * FROM Win32_OperatingSystem WHERE BuildNumber = '2600' AND OSType=18 AND ServicePackMajorVersion >= 2</Query1> 
  <Query2>SELECT * FROM Win32_Processor WHERE Architecture=0</Query2> 
</PlatformApplicabilityCondition>

Attributes

Name Type Description

Platform

tns:DefinedPlatformsType

A value from the DefinedPlatformsType (I386, IA64, x64).

Name

tns:DefinedPlatformNamesType

The name of the operating system.

MinVersion

tns:PlatformMinVersionType

The minimum operating system version that is required by this platform applicability condition.

MaxVersion

tns:PlatformMaxVersionType

The maximum operating system version that is required by this platform applicability condition.

DisplayName

tns:NonEmptyStringType

A display name for this platform applicability condition.

See Also


Send comments about this topic to Microsoft.