SMS_CIContentFiles Server WMI Class

 

Updated: November 1, 2013

Applies To: System Center 2012 Configuration Manager, System Center 2012 Configuration Manager SP1, System Center 2012 R2 Configuration Manager

The SMS_CIContentFiles Windows Management Instrumentation (WMI) class is an SMS Provider server class, in System Center 2012 R2 Configuration Manager, that lists all files associated with the content of a specific SMS_SoftwareUpdate Server WMI Class object.

The following syntax is simplified from Managed Object Format (MOF) code and includes all inherited properties.

Class SMS_CIContentFiles : SMS_BaseClass
{
    String CI_UniqueID;
    UInt32 ContentID;
    String FileHash;
    String FileName;
    SInt64 FileSize;
    String FileVersion;
    String ImportPath;
    Boolean IsSigned;
    String ModelName;
    UInt32 ObjectTypeID;
    String SourceURL;
};

The SMS_CIContentFiles class does not define any methods.

CI_UniqueID

Data type: String

Access type: Read-only

Qualifiers: [read]

See SMS_ConfigurationItemLatestBaseClass Server WMI Class.

ContentID

Data type: UInt32

Access type: Read-only

Qualifiers: [read ,key, Not_null]

ID for the software update content. See the ContentID property of SMS_CIToContent Server WMI Class.

FileHash

Data type: String

Access type: Read-only

Qualifiers: [read, Not_null]

The file hash.

FileName

Data type: String

Access type: Read-only

Qualifiers: [read, key, Not_null]

File name, including the subdirectory path under the root directory.

FileSize

Data type: SInt64

Access type: Read-only

Qualifiers: [read, Not_null]

The size of the file.

FileVersion

Data type: String

Access type: Read-only

Qualifiers: [read, Not_null]

The file version.

ImportPath

Data type: String

Access type: Read-only

Qualifiers: [read, Not_null]

The file location (including file name) relative to the import root.

IsSigned

Data type: Boolean

Access type: Read-only

Qualifiers: [read, Not_null]

true if the software update content is signed.

ModelName

Data type: String

Access type: Read-only

Qualifiers: [read]

See SMS_ConfigurationItemLatestBaseClass Server WMI Class.

ObjectTypeID

Data type: UInt32

Access type: Read-only

Qualifiers: [read, Not_null]

Secured object class ID. Possible values are listed below.

0

PKG_TYPE_REGULAR

3

PKG_TYPE_DRIVER

4

PKG_TYPE_TASK_SEQUENCE

5

PKG_TYPE_SWUPDATES

6

PKG_TYPE_DEVICE_SETTING

8

PKG_CONTENT_PACKAGE

257

PKG_TYPE_IMAGE

258

PKG_TYPE_BOOTIMAGE

259

PKG_TYPE_OSINSTALLIMAGE

512

APPLICATION

SourceURL

Data type: String

Access type: Read-only

Qualifiers: [read, Not_null]

URL where the source for the content file is located.

Class qualifiers for this class include:

  • Read (read-only)

  • Secured

For more information about both the class qualifiers and the property qualifiers included in the Properties section, see Configuration Manager Class and Property Qualifiers.

This class is used to determine update files to download for a particular update, for example, when there are different locales associated with the update. When using this class, first identify which contents need to be downloaded by querying SMS_CIToContent Server WMI Class and obtain the list of ContentID properties matching the specific language criteria. Given the list, you can then obtain the associated download URL and the related properties for the content files from SMS_CIContentFiles.

Show: