Link to home
Start Free TrialLog in
Avatar of dmitrij75
dmitrij75Flag for Russian Federation

asked on

What images inside the boot.wim I should be using to integrate RAID driver to?

I need to integrate a special RAID driver before the Windows installing, as I don't want to press F6 and don't have a floppy drive as well. If I issue the command DISM /Image:<path_to_boot.wim> /Get-WimInfo, it shows  that boot.wim includes two images: Windows PE and WIndows Setup. I faced the problem what image inside the boot.wim I should use to integrate the driver to? And please, if you can, pour the light on why boot.wim has two images inside?
Avatar of ZabagaR
ZabagaR
Flag of United States of America image

Here is what I do to inject drivers to my Windows PE boot CD.


1. Mount my winpe.wim to a directory called c:\winpe\mount

      Dism /mount-wim /wimfile:c:\winpe\winpe.wim /index:1 /mountdir:c:\winpe\mount

2. Add all drivers I placed in the C:\MyDrivers folder (usually NIC & RAID!)

      Dism /image:C:\winpe\mount /Add-Driver /driver:C:\MyDrivers /recurse

3. Dismount the image. Done.

        Dism /Unmount-Wim /MountDir:C:\winpe\mount /Commit
Avatar of dmitrij75

ASKER

It's clear when you want to integrate the driver into Windows PE (DART or recovery disk) or captured image of working Windows.But what if I want to integrate the driver into distributive disk with Windows 7 or 8 itself. I know that I must install the driver into install.wim with index corresponding to edition of Windows(Home, Pro,etc.). But what image (index of image) inside the boot.wim I should be using to integrate the driver to ?
So what index/image to choose inside a boot.wim for adding the RAID driver to: index 1 (Microsoft Windows PE) or index 2 (Microsoft Windows Setup)?
Your advice, please!
OK, I see what you mean. It is a bit unclear. Although I have not performed that exact task you're looking to do, I believe you want to use Index 1 (Windows PE).
ASKER CERTIFIED SOLUTION
Avatar of dmitrij75
dmitrij75
Flag of Russian Federation image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Found a clue by digging on the forums and reading the other sources in the Internet.