我是一名C++
在VS2010
. 目前我WMI
用来监控系统中的进程和设备。在编写WQL
查询时,是否可以TargetInstance
从多个类中选择?例如,代替select * from __InstanceOperationEvent within 1 where TargetInstance ISA 'Win32_PnPEntity'
,我如何使用类似select * from __InstanceOperationEvent within .1 where TargetInstance ISA 'Win32_PnpEntity','Win32_DiskDrive'
.
我尝试使用,
,OR
等,但失败了。
感谢您的帮助。