Hi All,
I have a PXE server to install a load of win 7 images across a LAN. I have everything set up but the network drivers for the machines I am using are not bundled. All of the machines are the same and are using the same network drivers.
I have ran Dism /Image:c:\WinPE_64\mount /Add-Driver /Driver:c:\winpe_64\Drivers\ /recurse and it tells me that everything has been installed correctly. When I check the drivers on the mounted image, they appear under oem1 and oem0 in Windows/inf respectively.
However when the image is loaded from the PXE I cant find the drivers oem0 or oem1 andywhere on the drive? I can get it working if i load the drivers via usb but its not a practicle solution for the amount of machines I need to do.
Below is a list of commands that I use to create the image:
MOUNT DRIVE
Dism.exe /Mount-Wim /WimFile:c:\WinPE_64\winpe.wim /Index:1 /MountDir:c:\WinPE_64\mount
ADD OPTIONAL DRIVERS
Dism.exe /Image:c:\WinPE_64\mount /Add-Driver /Driver:c:\WinPE_64\Drivers /Recurse /forceunsigned
Check drivers
dism /Image:c:\WinPE_64\mount /Get-Drivers
Unmount and save
Dism.exe /Unmount-Wim /MountDir:c:\WinPE_64\mount /Commit
CLEANUP
dism /cleanup-wim
Create ISOcopy c:\WinPE_64\winpe.wim c:\WinPE_x64\ISO\sources\boot.wim -a
oscdimg.exe -n -bc:\WinPE_64\etfsboot.com c:\WinPE_64\ISO c:\WinPE_64\WinPE_64.iso
Any ideas??