properti SWbemObjectEx.SystemProperties_
Properti SystemProperties_ objek SWbemObjectEx mengembalikan objek SWbemPropertySet yang berisi kumpulan Properti Sistem WMI yang berlaku untuk objek.
Untuk penjelasan tentang sintaks ini, lihat Konvensi Dokumen untuk Scripting API.
Properti ini bersifat baca/tulis.
Sintaks
SWbemObjectEx.SystemProperties_ As Object
Nilai properti
Contoh
Sampel kode berikut mengambil nilai properti untuk kelas 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
Persyaratan
Persyaratan | Nilai |
---|---|
Klien minimum yang didukung |
Windows Vista |
Server minimum yang didukung |
Windows Server 2008 |
Header |
|
Pustaka jenis |
|
DLL |
|
CLSID |
CLSID_SWbemObjectEx |
IID |
IID_ISWbemObjectEx |