If you have a Windows 7 or even a Windows Server 2008 R2 Server ISO file and you need to add drivers to this ISO file, this little how to shows you how you can do that.
- First create the following folders
C:\temp\WindowsISO (Unpack the windows.iso to this folder)
C:\temp\drivers (Add all driver folders in this folder the drivers have to be in .inf format)
C:\temp\wim (Is a temp folder for the WIM file)
C:\ temp\WindowsISOdrivers (the new .ISO file will be created here) - Download and install the Windows Automated Installation Kit
- Start Windows AIK Deployment Tools Command Prompt from Start menu
- Mount the install.wim file from C:\temp\WindowsISO to C:\temp\wim
imagex /mountrw C:\temp\WindowsISO\SOURCES\install.wim 1 C:\temp\wim
- Add Drivers with dism
CD C:\temp\drivers\Network\Emulex\M72KR\W2K8R2\x64 dism /image:C:\temp\wim /add-driver /driver:. /recurse
- Now unmount the WIM Image
imagex /unmount /commit C:\temp\wim
- Create the new ISO file
oscdimg -n -m -bc:\temp\WindowsISO\boot\etfsboot.com C:\temp\WindowsISO C:\temp\WindowsISOdrivers\windows.iso

Pingback: Tweets that mention Add Drivers to Windows Installation ISO | thomasmaurer.ch -- Topsy.com
Pingback: Cisco UCS Hyper-V Cluster – Create Hyper-V Image for Blade Servers – Part 2 | thomasmaurer.ch
When I try to create the ISO file he can’t find the etfsboot.com. Is ther something wrong with this line: oscdimg -n -m -bc:\temp\WindowsISO\boot\etfsboot.com C:\temp\WindowsISO . I have a windows7 machine (x64). Can you tell me why etfsboot is not there?