Drivers in Windows PE Not Working

You added drivers to a Windows PE image but the drivers aren't available and the hardware can't be seen? Here's why the installation failed and what to do about it.

John Savill

October 16, 2013

1 Min Read
Drivers in Windows PE Not Working

Q: I have added drivers into my Windows PE image for my OS installation--so why aren't the drivers  available and why does my installation fail, saying the hardware can't be seen?

A: The boot.wim file actually contains two separate images, as shown below:

PS C:windowssystem32> dism /get-wiminfo /wimfile:d:tempboot.wimDeployment Image Servicing and Management toolVersion: 6.3.9600.16384Details for image : d:tempboot.wimIndex : 1Name : Microsoft Windows PE (x64)Description : Microsoft Windows PE (x64)Size : 1,259,685,118 bytesIndex : 2Name : Microsoft Windows Setup (x64)Description : Microsoft Windows Setup (x64)Size : 1,356,525,607 bytesThe operation completed successfully.

Typically, you mount the first image and add your drivers. The problem is that Windows actually boots from and uses the second image, not the first. This means you need to inject your drivers into image 2 and not image 1.

About the Author

Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.

You May Also Like