The SMS_Certificate Windows Management Instrumentation (WMI) class is an SMS Provider server class that contains all of the certificates that are registered to the server.

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

Class SMS_Certificate : SMS_BaseClass
{
	String Certificate;
	Boolean IsApproved;
	Boolean IsBlocked;
	String IssuedTo;
	SInt32 KeyType;
	String PublicKey;
	String ServerName;
	String SMSID;
	String Thumbprint;
	UInt32 Type;
	DateTime ValidFrom;
	DateTime ValidUntil;
};

Methods

The SMS_Certificate class does not define any methods.

Properties

Certificate

Data type: StringAccess type: Read/WriteQualifiers: [large, lazy]The certification content.
IsApproved

Data type: BooleanAccess type: Read/WriteQualifiers: Nonetrue if the certificate is approved.
IsBlocked

Data type: BooleanAccess type: Read/WriteQualifiers: Nonetrue if the certificate is blocked. A blocked certificate is rejected by the site database. See the BlockCertificate Method in Class SMS_CertificateInfo.
IssuedTo

Data type: StringAccess type: Read/WriteQualifiers: NoneThe identity of the client.
KeyType

Data type: SInt32Access type: Read/WriteQualifiers: NoneThe public key type for the certificate. Possible values are:

1

self-sign

2

issued

PublicKey

Data type: StringAccess type: Read/WriteQualifiers: [lazy]Public key of the certificate, which reflects the globally unique SHA-1 hash thumbprint indicated by the Thumbprint property.
ServerName

Data type: StringAccess type: Read/WriteQualifiers: NoneThe distribution point server which the distribution point certificate belongs to. For Boot Media and ISVProxy, the value is empty.
SMSID

Data type: StringAccess type: Read/WriteQualifiers: [key]The GUID used to identify the certificate.
Thumbprint

Data type: StringAccess type: Read/WriteQualifiers: [Lazy]Hash value of the certificate.
Type

Data type: UInt32Access type: Read/WriteQualifiers: NoneThe type of certificate. Possible values are:

1

Boot Media

2

PXE

3

ISVProxy

ValidFrom

Data type: DateTimeAccess type: Read/WriteQualifiers: NoneDate and time when the certificate becomes effective.
ValidUntil

Data type: DateTimeAccess type: Read/WriteQualifiers: NoneDate and time when the certificate expires.

Remarks

Class qualifiers for this class include:

  • Read (read-only)

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

Requirements

Runtime Requirements

Development Requirements

See Also