Topic: MassStorage x86
Windows 7 & Vista x86 DriverPack MassStorage
Question: How do we add these Mass Storage drivers to boot.wim? This will make sure that Setup will detect any SATA/RAID Hard Disk during installation (ie, textmode integration).
Answer: Extract dpms to C:\test\DP_Temp\ Mount the boot.wim index:2. Add the drivers with DISM
1. Mount Boot.wim (for textmode drivers ALWAYS mount index #2, NEVER #1)
Dism /Mount-Wim /WimFile:C:\Source-OS\SOURCES\BOOT.WIM /index:2 /MountDir:C:\test\offline
2. Add Drivers
Dism /image:C:\test\offline /Add-Driver /driver:C:\test\DP_Temp\x86 /recurse
3. Save work
Dism /Unmount-Wim /MountDir:M:\test\offline /commit
4. Mass storage text mode is done