I've found some Dell "combo" driver cabs that supposedly support multiple Dell models. I set up an Auto Apply Drivers step in my task sequence using a WMI query:
Select * from Win32_ComputerSystem where Model like 'Optiplex Gx520%' or Model like 'Optiplex 745%' or Model like 'Optiplex 755' or Model like 'Optiplex 760'
My question(s) is; will the above query work? Does the Syntax look correct? I tried running the task sequence and it didn't fail but I'm not convinced it has actually applied the drivers/run this step as there are drivers missing afterwards. I tried looking through the smsts.log but cannot find any indication that this has run successfully. I have used singular WMI query's for drivers before but not multiple one's using "OR Model like". Can anyone advise?