我是在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
等,但是失败了。
谢谢您的帮助。
最佳答案
这没什么大不了的!!!select * from __InstanceOperationEvent within 1 where (TargetInstance ISA Win32_PnPEntity') OR (TargetInstance ISA 'Win32_CDROMDRIVE')
解决了我的问题。
关于c++ - 从多个类中选择WMI TargetInstance?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28984562/