Partager via


SWbemObjectEx.SystemProperties_ property

La propriété SystemProperties_ de l’objet SWbemObjectEx renvoie un objet SWbemPropertySet qui contient la collection de propriétés système WMI qui s’appliquent à l’objet.

Pour obtenir une explication de cette syntaxe, consultez Conventions de document pour l’API Scripting.

Cette propriété est en lecture/écriture.

Syntaxe

SWbemObjectEx.SystemProperties_ As Object

Valeur de la propriété

Exemples

L’exemple de code suivant récupère les valeurs de propriété pour la classe Win32_Process.

Set objWmi = GetObject ("winmgmts:root\cimv2")
Set objClass = objWmi.Get("Win32_Process")

' SWbemObjectEx.SystemProperties_ returns 
' an SWbemPropertySet object that contains the collection
' of sytem properties for Win32_Process class

For Each objProperty In objClass.SystemProperties_

    WScript.Echo vbCrLf & objProperty.Name & ":"

    ' Have to take into account that
    ' __Derivation is an array

    If Not objProperty.IsArray Then
        WScript.Echo vbTab & objProperty.Value
    Else
        For Each strValue In objProperty.Value
            WScript.Echo vbTab & strValue
        Next
    End If

Next

Spécifications

Condition requise Valeur
Client minimal pris en charge
Windows Vista
Serveur minimal pris en charge
Windows Server 2008
En-tête
Wbemdisp.h
Bibliothèque de types
Wbemdisp.tlb
DLL
Wbemdisp.dll
CLSID
CLSID_SWbemObjectEx
IID
IID_ISWbemObjectEx

Voir aussi

SWbemObjectEx