The SMS_SCI_Component Windows Management Instrumentation (WMI) class is an SMS Provider server class, in Configuration Manager, that represents a Configuration Manager server component installed on one or more servers at a site.

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

Class SMS_SCI_Component : SMS_SiteControlItem 
{
	 String ComponentName;
	 UInt32 FileType;
	 UInt32 Flag;
	 String ItemName;
	 String ItemType;
	 String Name;
	 SMS_EmbeddedProperty Props[];
	 SMS_EmbeddedPropertyList PropLists[];
	 String SiteCode;
};

Methods

The SMS_SCI_Component class does not define any methods.

Properties

ComponentName

Data type: StringAccess type: Read/WriteQualifiers: NoneName of the Configuration Manager server component. The default value is "".
FileType

Data type: UInt32Access type: Read/WriteQualifiers: [key, enumeration:ToSubClass]See SMS_SiteControlItem Server WMI Class.
Flag

Data type: UInt32Access type: Read/WriteQualifiers: NoneFlag identifying the component. Possible values are listed below. The default value is NAMED_SERVER_INSTALLED (6).

Value Description

1

ROLE_NOT_INSTALLED. If the flag is set to this value, the Name property specifies the server role. The component is installed on every server having the specified role.

2

NAMED_SERVER_NOT_INSTALLED. If the flag is set to this value, the Name property specifies a particular server on which the component is installed. The server name does not include backslashes.

5

ROLE_INSTALLED. If the flag is set to this value, the Name property specifies the server role. The component is installed on every server having the specified role.

6

NAMED_SERVER_INSTALLED. If the flag is set to this value, the Name property specifies a particular server on which the component is installed. The server name does not include backslashes.

ItemName

Data type: StringAccess type: Read-onlyQualifiers: [key, read]See SMS_SiteControlItem Server WMI Class.
ItemType

Data type: StringAccess type: Read-onlyQualifiers: [key, read]See SMS_SiteControlItem Server WMI Class.
Name

Data type: StringAccess type: Read/WriteQualifiers: NoneConfiguration Manager role or server name, depending on the value of Flag. The default value is "".
Props

Data type: SMS_EmbeddedProperty ArrayAccess type: Read/WriteQualifiers: NoneSMS_EmbeddedProperty Server WMI Class objects for the component.
PropLists

Data type: SMS_EmbeddedPropertyList ArrayAccess type: Read/WriteQualifiers: NoneSMS_EmbeddedPropertyList Server WMI Class objects for the component.
SiteCode

Data type: StringAccess type: Read/WriteQualifiers: [key, SizeLimit("3")]See SMS_SiteControlItem Server WMI Class.

Remarks

There are no special class qualifiers for this class. For more information about both the class qualifiers and the property qualifiers included in the Properties section, see Configuration Manager Class and Property Qualifiers.

Run the following query for a complete list of Configuration Manager server components defined for your site server.

  Copy Code
SELECT * FROM SMS_SCI_Component
WHERE SiteCode = "<sitecode>"

Requirements

Runtime Requirements

Development Requirements

See Also