ASUS UX31A - A required CD/DVD drive device driver is missing

0

I have a little issue with my ASUS UX31A. I just tried to do a clean install of Windows 7 64bit using a USB-Stick created using Rufus.

The laptop booted from the USB stick and opened the Windows installation, after a few clicks I got the message "A required CD/DVD drive device driver is missing. If you have a driver floppy disk, CD, DVD, or USB flash drive, please insert it now.".

I have tried literally every suggested trick (putting USB3 drivers on the stick, switching USB ports after error message...) but nothing works.

I have no idea how to proceed and would be happy for any helpful suggestions.

mattbac

Posted 2014-10-14T13:25:50.457

Reputation: 9

Question was closed 2016-06-07T13:19:02.960

You could revert back to an older bios, like the one you previously had that worked for the USB stick at least otherwise you could call ASUS. – Eric F – 2014-10-14T13:28:49.923

Answers

1

This message happens when you try to install Windows 7 via USB flash drive and use the USB device on a USb 3.0 port. Windows 7 doesn't support USb 3.0 out of the box, so you must inject the USB 3.0 drivers into the Boot.wim with DISM first.

dism /mount-wim /wimfile:boot.wim /index:2 /mountdir:mount

dism /image:mount /add-driver:"usb3" /recurse

dism /unmount-wim /mountdir:mount /commit

enter image description here

Now copy the modified boot.wim to the flash drive.

magicandre1981

Posted 2014-10-14T13:25:50.457

Reputation: 86 560