可以用CreateObject创建的WMI对象

标签: , , ,

WMI对象有很多,但并不是所有的WMI对象都可以用CreateObject函数来创建,只有少部分可以。

'By Demon
'https://demon.tw
'create an object for WMI in VBScript by calling CreateObject
Set objSWbemDateTime = CreateObject("WbemScripting.SWbemDateTime")
Set objSWbemLocator = CreateObject("WbemScripting.SWbemLocator")
Set objSWbemObjectPath = CreateObject("WbemScripting.SWbemObjectPath")
Set objSWbemNamedValueSet = CreateObject("WbemScripting.SWbemNamedValueSet")
Set objSWbemRefresher = CreateObject("WbemScripting.SWbemRefresher")
Set objSWbemSink = CreateObject("WbemScripting.SWbemSink")
Set objSWbemLastError = CreateObject("WbemScripting.SWbemLastError")
'If error information is not available, an attempt to create an error object will fail.

参考链接:http://msdn.microsoft.com/zh-cn/library/windows/desktop/aa389744%28v=vs.85%29.aspx

赞赏

微信赞赏支付宝赞赏

随机文章:

  1. Visual C++ 常用的文件扩展名
  2. Asc/AscB/AscW和Chr/ChrB/ChrW函数之间的区别
  3. MSDN 6.0 简体中文完全版下载
  4. 在Raspberry Pi树莓派上编译Node.js
  5. VB6拾遗:调用函数指针

留下回复