The ComplexSettingType complex type provides a grouping mechanism for settings in Configuration Manager 2007. The complex setting can be a named group of other simple settings or complex settings or both. It is used only for organizational purposes and has no associated discovery, value, or rules.

<xs:complexType name="ComplexSettingType">
	<xs:sequence>
		<xs:choice
			minOccurs="0"
			maxOccurs="unbounded"
		>
			<xs:element
				ref="ComplexSetting"
			 />
			<xs:element
				ref="SimpleSetting"
			 />
		</xs:choice>
		<xs:element
			ref="Annotation"
		 />
		<xs:any
			processContents="skip"
			minOccurs="0"
			maxOccurs="unbounded"
			namespace="##other"
		 />
	</xs:sequence>
	<xs:attribute name="LogicalName"
		type="LogicalName"
		use="required"
	 />
</xs:complexType>

Attributes

Name Type Description

LogicalName

LogicalName

The unique identity of the configuration item within the authoring scope.

See Also


Send comments about this topic to Microsoft.