SWbemObjectEx.SystemProperties_ 属性
SWbemObjectEx 对象的 SystemProperties_ 属性返回 SWbemPropertySet 对象,该对象包含应用于该对象的 WMI 系统属性的集合。
有关此语法的说明,请参阅脚本 API 的文档约定。
此属性是可读写的。
语法
SWbemObjectEx.SystemProperties_ As Object
属性值
示例
以下代码示例检索 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
要求
要求 | 值 |
---|---|
最低受支持的客户端 |
Windows Vista |
最低受支持的服务器 |
Windows Server 2008 |
标头 |
|
类型库 |
|
DLL |
|
CLSID |
CLSID_SWbemObjectEx |
IID |
IID_ISWbemObjectEx |