Difference between revisions of "Active Directory/Documentation/WDS/Management/Images/Integrating boot drivers with DISM"
Jump to navigation
Jump to search
(Add driver listing info.) |
(Tag as migrated) |
||
Line 12: | Line 12: | ||
You can also list all of the drivers in a particular image: "dism /image:<mountDir> /get-drivers" | You can also list all of the drivers in a particular image: "dism /image:<mountDir> /get-drivers" | ||
− | + | [[Category:Migrated to AD]] | |
[[Category:WDS Image Management]] | [[Category:WDS Image Management]] | ||
[[Category:WDS Management]] | [[Category:WDS Management]] | ||
[[Category:WDS]] | [[Category:WDS]] |
Latest revision as of 16:43, 8 July 2011
To integrate a boot driver using the DISM tool, follow this procedure:
- Locate, download, and extract the driver to a known location.
- Follow the instructions to [[../Mounting WIMs with DISM|mount the WIM image]]
- Use the following syntaxes appropriate to the situation:
- If only one driver is to be added, execute: "dism /image:<mountDir> /add-driver /driver:<pathToDriver.INF>"
- If multiple drivers are to be added, ensure that they are all located in the same directory and issue: "dism /image:<mountDir> /add-driver /driver:<driversDir>"
- If multiple drivers are to be added but they are in a subdirectory structure (e.g., c:\drivers with subfolders c:\drivers\net and c:\drivers\sata), issue: "dism /image:<mountDir> /add-driver /driver:<driversDir> /recurse" to add all drivers in the stated directory and all subdirectories.
- [[../Mounting WIMs with DISM|Unmount and save the WIM image]].
A production example of a driver operation: "dism /image:..\..\wimMount /add-driver /driver:\\wolftech.ad.ncsu.edu\deployment\staging\drivers\network\VBoxPCNet"
You can also list all of the drivers in a particular image: "dism /image:<mountDir> /get-drivers"