Elscorpio Posted November 7, 2013 Report post Posted November 7, 2013 Does anyone know the exact correct WMI string for letting it select M93p based on the MTM number in the BIOS ? See attached screenshot Quote Share this post Link to post Share on other sites More sharing options...
Peter33 Posted November 7, 2013 Report post Posted November 7, 2013 Why not select * from Win32_ComputerSystemProduct where Version like "%M93p" Just by the way, did you find a SCCM driver package on the Lenovo site for the M93p? Seems like they gave up the SCCM support again. Quote Share this post Link to post Share on other sites More sharing options...
Ourukai Posted November 8, 2013 Report post Posted November 8, 2013 I use the Lenovo Update Retriever. You select the model number eg: 10A9, name it in the repository eg: Thinkcentre M93p. Then select the OS that you want to download the drivers for. The Update retriever grabs the newest drivers for that model and OS and stores them into your repository. From there once the drivers are downloaded you extract them from the GUI to the network location that SCCM will import them from. It is a little arduous but at least it is better than having to manually DL all of the drivers individually and extract. This has saved me a ton of time with Lenovo drivers. Quote Share this post Link to post Share on other sites More sharing options...
Config Mangler Posted November 9, 2013 Report post Posted November 9, 2013 I would try the WMI QUERY listed by peter33. I must say you are making life hard for yourself here and maybe introducing unnecessary complexity and also a point of failure. Just pull in the latest drivers and review critical driver updates periodically. Quote Share this post Link to post Share on other sites More sharing options...
Elscorpio Posted March 10, 2014 Report post Posted March 10, 2014 I got all of this working by using the first part of the MTM number in the Lenovo BIOS. Is there a best practice for importing the Lenovo drivers into SCCM? Im especially thinking of Lenovo models sharing the same drivers? I have a constant problem with the drivers disappearing from the driver packages in SCCM 2012 Quote Share this post Link to post Share on other sites More sharing options...
kevlar01 Posted March 10, 2014 Report post Posted March 10, 2014 Perhaps you can take a look at this tool: http://gallery.technet.microsoft.com/ConfigMgr-Driver-Injector-aae7d17d Quote Share this post Link to post Share on other sites More sharing options...
Elscorpio Posted February 12, 2015 Report post Posted February 12, 2015 I got it working smoothly using driver packages in SCCM (using the option to install drivers from all Categories), Lenovo Update Retriever I never got working 100% Quote Share this post Link to post Share on other sites More sharing options...
anyweb Posted February 13, 2015 Report post Posted February 13, 2015 Does anyone know the exact correct WMI string for letting it select M93p based on the MTM number in the BIOS ? See attached screenshotwmi_query.jpg try Select * FROM Win32_ComputerSystem WHERE Model Like "10A8%" OR Model Like "10AA%" OR Model Like "10A6%" Quote Share this post Link to post Share on other sites More sharing options...
Pants Posted February 13, 2015 Report post Posted February 13, 2015 I went this direction with that since we have multiple model numbers for the M93p: SELECT * FROM Win32_ComputerSystemProduct WHERE Version LIKE "%ThinkCentre M93%" Also, don't import the i217LM NIC drivers from Lenovo for this model, grab them from Intel. The Lenovo version randomly causes ipv6 storms when the machines go to sleep. Quote Share this post Link to post Share on other sites More sharing options...
epoch71 Posted February 17, 2015 Report post Posted February 17, 2015 Yeah I prefer using 'version' for Lenovo too - it makes the query more readable (and shorter). For Dell and HP we use 'model', which similarly is more human readable. No idea why Lenovo (or was it IBM) decided to make 'model' so cryptic ... Quote Share this post Link to post Share on other sites More sharing options...