New
#1
Question about adding boot critical drivers to an unattended install
Let's say that I have a storage driver that I need for the successful installation of Windows. During a manual installation of Windows I know that I can manually load additional drivers. However, if I want to perform an unattended install I'm assuming that I would need to inject this driver into my boot.wim. Is that correct?
My confusion is over what index I need to specify to add my driver. When I look at my boot.wim I see 2 possible indexes:
C:\Windows\system32>dism /get-wiminfo /wimfile:c:\iso_files\sources\boot.wim
Deployment Image Servicing and Management tool
Version: 10.0.17763.1
Details for image : c:\iso_files\sources\boot.wim
Index : 1
Name : Microsoft Windows PE (x64)
Description : Microsoft Windows PE (x64)
Size : 1,781,417,248 bytes
Index : 2
Name : Microsoft Windows Setup (x64)
Description : Microsoft Windows Setup (x64)
Size : 1,941,119,642 bytes
The operation completed successfully.
Am I correct in assuming that for an unattended setup I need to inject the driver into the "Microsoft Windows Setup (x64)" which corresponds to index 2?
If this is the case could someone also just possibly clarify what the purpose of Index 1 (Microsoft Windows PE (x64)) is?