Completely Unattended with Custom WIM Question

yaemish

New member
Local time
1:23 PM
Messages
3
I made an imagex of 7 Enterprise, did an unattended XML, oobe, and generalized it. When I boot the system that was imaged, it goes straight to through as expected.

However, when I installed the custom install.wim version (I took the original DVD and replaced the install.wim with my imagex version), multiple drivers were missing. I could have sworn that I used the same media base to do an installation on this hardware before. Since I will be deploying to multiple new (various hardware) workstations, is there a way to add a large driver package to the installation media? I'm not asking about specific drivers for specific systems. I would like to add a large driver package that will cover most of the hardware that I bump into. Dual-layer media will be used, so size isn't a problem.
 

My Computer My Computer

At a glance

Windows 7 Ultimate x64
OS
Windows 7 Ultimate x64
mount the wim file using DISM command. Now add drivers , then save the wim

Code:
Dism /Get-WimInfo /WimFile:[B]D[COLOR=navy]:\install.wim[/COLOR][/B]
[B][COLOR=#000080]---- [/COLOR][COLOR=magenta]now you know what index to use![/COLOR][/B]
Dism /Mount-Wim /WimFile:[B]D[COLOR=navy]:\install.wim[/COLOR][/B] /index:[COLOR=magenta][B]1[/B][/COLOR] /MountDir:[B]C:\mountpointWIM[/B]
Dism /image:[B]C:\mountpointWIM[/B] /Add-Driver /driver:[COLOR=red][B]C:\root_drivers[/B][/COLOR] /recurse
Dism /Unmount-Wim /MountDir:[B]C:\mountpointWIM[/B] /commit
D:\install.wim = location of WIM file to patch
C:\mountpointWIM = extract location
C:\root_drivers = location of extra drivers. Put them in subfolders below that folder

use the right index(es)
 

My Computer My Computer

At a glance

Microsoft Windows 7 Home Premium 64-bits 7601...Intel(R) Core(TM) i3 CPU M 370 @ 2.40GHz4,00 GBATI Mobility Radeon HD 5400 Series
Computer type
Laptop
Computer Manufacturer/Model Number
ACER ASPIRE 5742G
OS
Microsoft Windows 7 Home Premium 64-bits 7601 Multiprocessor Free Service Pack 1
CPU
Intel(R) Core(TM) i3 CPU M 370 @ 2.40GHz
Motherboard
Acer Aspire 5742G
Memory
4,00 GB
Graphics Card(s)
ATI Mobility Radeon HD 5400 Series
Sound Card
(1) AMD High Definition Audio Device (2) Realtek High Defi
Screen Resolution
1366 x 768 x 32 bits (4294967296 colors) @ 60 Hz
Hard Drives
WDC WD5000BEVT-22ZAT0
So are you saying that I will have to find individual driver sets for the hardware? I can't take advantage of all the drivers that are usually already available in Windows 7?
 

My Computer My Computer

At a glance

Windows 7 Ultimate x64
OS
Windows 7 Ultimate x64
So are you saying that I will have to find individual driver sets for the hardware? I can't take advantage of all the drivers that are usually already available in Windows 7?
of course you can! But they are already in install.wim if you used the install.wim from install DVD as a base
 

My Computer My Computer

At a glance

Microsoft Windows 7 Home Premium 64-bits 7601...Intel(R) Core(TM) i3 CPU M 370 @ 2.40GHz4,00 GBATI Mobility Radeon HD 5400 Series
Computer type
Laptop
Computer Manufacturer/Model Number
ACER ASPIRE 5742G
OS
Microsoft Windows 7 Home Premium 64-bits 7601 Multiprocessor Free Service Pack 1
CPU
Intel(R) Core(TM) i3 CPU M 370 @ 2.40GHz
Motherboard
Acer Aspire 5742G
Memory
4,00 GB
Graphics Card(s)
ATI Mobility Radeon HD 5400 Series
Sound Card
(1) AMD High Definition Audio Device (2) Realtek High Defi
Screen Resolution
1366 x 768 x 32 bits (4294967296 colors) @ 60 Hz
Hard Drives
WDC WD5000BEVT-22ZAT0
The image was installed via install.wim, then I customized it and did a sysprep. After I used imagex to make a new install.wim and I replaced the original one. So that is what you mean by "using it as a base"?

If so, then I must have got my installation media mixed up. I didn't have to manually install the drivers when I first set the system up.
 

My Computer My Computer

At a glance

Windows 7 Ultimate x64
OS
Windows 7 Ultimate x64
Back
Top