regan Posted July 2, 2015 Report post Posted July 2, 2015 This might be a really obvious thing, I'm using a WMI query for my driver packages which works well but when i want to use a driver package for say 3 machines i add each with a WMI query but then it links them so of course doesn't work. Should i just be added a comma in-between for example SELECT * FROM Win32_ComputerSystem WHERE Model Like "%35542S2%,%35542S3%" Quote Share this post Link to post Share on other sites More sharing options...
TrialandError Posted July 2, 2015 Report post Posted July 2, 2015 You could always change your conditional statement to 'If ANY of the conditions are true' instead of 'This group/step will run if the following conditions are met'. I thought there was a way to put in OR statements too but I'm not sure how. 1 Quote Share this post Link to post Share on other sites More sharing options...
Rocket Man Posted July 2, 2015 Report post Posted July 2, 2015 You can simply add the OR operator into the single WMI query as TrialandError mentioned for example: SELECT * FROM Win32_ComputerSystem WHERE Model Like "%35542S2%" OR Model Like "%model1%" OR Model like "%model2%" 1 Quote Share this post Link to post Share on other sites More sharing options...