In Configuration Manager 2007, the FilePropertyNames simple type is the set of file properties against which rules can be authored.

<xs:simpleType name="FilePropertyNames">
	<xs:restriction
		base="string"
	>
		<xs:enumeration
			value="Size"
		 />
		<xs:enumeration
			value="DateCreated"
		 />
		<xs:enumeration
			value="DateModified"
		 />
		<xs:enumeration
			value="Version"
		 />
		<xs:enumeration
			value="Company"
		 />
		<xs:enumeration
			value="ProductName"
		 />
		<xs:enumeration
			value="SHA1Hash"
		 />
		<xs:enumeration
			value="Attributes"
		 />
	</xs:restriction>
</xs:simpleType>

Enumeration

The following values are defined by the FilePropertyNames simple type:

Value Description

Size

The size of the file in bytes.

DateCreated

The creation DateTime of the file.

DateModified

The last modified DateTime of the file.

Version

The version information of the file. This is limited to the four part file version.

Company

The manufacturer information of the file.

ProductName

The name of the product to which the file belongs.

SHA1Hash

The hexBinary encoded SHA1 hash of the file contents. Note that only the default NTFS stream is used in calculating the hash.

Attributes

The attributes of the file as defined by the FolderAndFileAttributesEnumeration type.

See Also


Send comments about this topic to Microsoft.