Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Question
Monday, October 26, 2015 2:57 PM
Hello All,
When importing drivers into the SCCM database, I place them in folders and add categories to them.
However when drivers are imported into the boot image, I don't see an easy way on how to identify which drivers have been exactly added to it by using the Drivers tab when observing the properties of the boot image.
Does anybody know an easy way how I can obtain this info?
Thanks!
Filip
All replies (3)
Monday, October 26, 2015 3:06 PM âś…Answered
Torsten Meringer | http://www.mssccmfaq.de
Monday, October 26, 2015 3:06 PM
Well the easy way to see the drivers injected in the WINPE is the way you are doing it using the properties under the driver tab.
The other option would be using DISM and mounting the winpe and running a query to get the drivers.
dism /Mount-Wim /WimFile:<Path>image.wim /Index:<indexnumber> /MountDir:<mountDir>
Dism /Get-Drivers /Image:<mountDir>
Monday, October 26, 2015 3:11 PM | 3 votes
You could use PowerShell to get the exact IDs of the Drivers which are assigned to the Boot Image
Get-CMBootImage -Name "Boot image (x64)" | Select ReferencedDrivers
With the returned IDs you can either search in the Drivers Node in the Console or use the following PowerShell to get the Driver Details:
Get-CMDriver -Id {ID}
Simon Dettling | msitproblog.com | @SimonDettling