Hello,
I work in an Organization of approx. 12,000 users and we deploy a wide range of laptops/desktops to our users. As the number of varying models increase I'm running into issues when deploying drivers via OSD. For example, I have several variants of the HP Zbook. The HP Zbook 15, HP Zbook 15 G2, HP Zbook 15u G2 and the list goes on with other models. I have a wmi query on the exact model name, for example,
SELECT * FROM Win32_ComputerSystem WHERE Model LIKE '%HP Zbook 15u G2%'
I noticed that OSD seems to pick up partial model names and tries to apply the driver pack to that laptop. In the example for the Zbook 15u when I run through a task sequence it will try to apply drivers from the Zbook 15 G2. Is there a way I can force OSD to look at the exact model name and not just a partial? I have played around with using the "If All conditions are true" statement and included Model NOT Like along with Model LIKE to try and filter out the wrong models. This does seem to work but can get complicated when you have lots of models named similarly.
Hope this makes sense
Thanks!