In Configuration Manager 2007, the FolderAndFileCommonPropertiesGroup group is a grouping of the properties that are shared by both file parts and folder parts. Rules can be defined against the values that are discovered for these properties.

If attributes are being checked, there can be up to two rules defined. One rule should use the "AllOf" operator to indicate the required attributes. The other rule should use the "NoneOf" operator to indicate the prohibited attributes.

The operand of the rules should be a space-delimited string containing one or more of the following attribute names:

<xs:group name="FolderAndFileCommonPropertiesGroup">
	<xs:sequence>
		<xs:element name="DateCreated">
			<xs:complexType>
				<xs:sequence
					minOccurs="0"
					maxOccurs="unbounded"
				>
					<xs:element
						ref="Rule"
					 />
				</xs:sequence>
			</xs:complexType>
		</xs:element>
		<xs:element name="DateModified">
			<xs:complexType>
				<xs:sequence
					minOccurs="0"
					maxOccurs="unbounded"
				>
					<xs:element
						ref="Rule"
					 />
				</xs:sequence>
			</xs:complexType>
		</xs:element>
		<xs:element name="Attributes">
			<xs:complexType>
				<xs:sequence
					minOccurs="0"
					maxOccurs="2"
				>
					<xs:element
						ref="Rule"
					 />
				</xs:sequence>
			</xs:complexType>
		</xs:element>
	</xs:sequence>
</xs:group>

Child Elements

Element Type Description

Attributes

 

The attributes of the file or folder.

DateCreated

 

The date the file or folder was created.

DateModified

 

The date the file or folder was modified.

See Also


Send comments about this topic to Microsoft.