I need to write a WMI query where I need to check that some value is equal to one of the values in the list, but I didn't find that WQL supports IN operator like SQL.
For example:
SELECT * FROM Device WHERE __CLASS IN ("Device1", "Device20").
What are the ways how to write this query?
Thanks.