I use a WMI filter to exclude a DTAEV client from certain GPOs.
SELECT * FROM Win32_ComputerSystem WHERE NOT Name = 'clientPC-01'
Now I have 2 more clients in the meantime. Can I just use the 'OR' parameter or do I have to ADD two more copies of the line above to the WMI-filter?