Fix Windows 11 INACCESSIBLE_BOOT_DEVICE on Intel VMD NVMe Systems (Dell Inspiron & Others)

The real reason this keeps failing

Here is the problem in one sentence: loading the Intel RST/VMD driver during Windows 11 Setup only injects it into the WinPE installer environment — it does not carry over into the Windows partition you are actually installing. That is why the NVMe drive appears, setup runs to completion, and the system then crashes the moment the fresh Windows tries to boot from the drive. Stop code 0x0000007B: INACCESSIBLE_BOOT_DEVICE.

What Intel VMD actually does

Intel VMD (Volume Management Device) is a hardware controller embedded in 11th-Gen and newer Intel processors that sits between the OS and PCIe-connected NVMe SSDs. The standard Microsoft NVMe driver (stornvme.sys) cannot see the drive through this layer at all — you need Intel’s own iaStorVD.sys loaded. When it is absent, Windows either cannot detect the drive during install or cannot boot afterward.

The Dell Inspiron 16 Plus 7630 ships with VMD enabled by default. Unlike some older Dell hardware, this model’s consumer BIOS does not expose a storage controller mode toggle. There is no AHCI switch to flip to sidestep the driver requirement.

Why the “Load driver” button during setup is only a partial fix

The Windows installer runs in two distinct phases. Phase 1 is WinPE — the minimal installer environment loaded entirely from your USB. Phase 2 is the actual Windows OS written to disk. Clicking Load driver during setup only equips Phase 1. Phase 2 launches from the NVMe, reaches for iaStorVD.sys, finds nothing, and throws the BSOD.

There are two clean ways out.

Fix 1: Slipstream the driver into boot.wim and install.wim before creating your USB

This is the correct long-term approach. Modify the installation media so both the WinPE environment and the installed OS image already contain the driver. You need a working Windows machine, DISM (built into Windows), and the Intel RST VMD driver package. Get it from Dell’s driver download page for the 7630 specifically — Dell ships a validated build for this hardware rather than the generic Intel release.

Copy the ISO contents to a local folder such as C:\Win11ISO\, create a mount directory at C:\Mount, and run the following from an elevated command prompt:

rem Mount boot.wim index 2 (the WinPE Setup environment)
dism /Mount-Image /ImageFile:C:\Win11ISO\sources\boot.wim /Index:2 /MountDir:C:\Mount

rem Inject the Intel RST VMD driver
dism /Image:C:\Mount /Add-Driver /Driver:C:\RST\f6flpy-x64 /Recurse

rem Commit and unmount
dism /Unmount-Image /MountDir:C:\Mount /Commit

Then repeat for install.wim. First check which index matches your Windows edition:

dism /Get-ImageInfo /ImageFile:C:\Win11ISO\sources\install.wim

Mount that index, add the driver the same way, and commit. If DISM refuses because the file is in ESD format (common on retail ISO downloads), you will need to convert it to WIM before proceeding.

Once both WIM files are updated, use Rufus to write from the modified folder to your USB.

Fix 2: Recover from the BSOD using WinRE and DISM

If Windows is already installed and you are stuck in the BSOD loop, you do not have to start over. Copy the Intel RST driver folder — the one containing iaStorVD.inf and its companion files — to a USB drive alongside or instead of the Windows installer.

Boot from your Windows installation USB, but instead of reinstalling choose:

  • Repair your computer
  • Troubleshoot
  • Command Prompt

Inside WinRE, drive letters are reassigned, so your Windows volume is often not C:. Find it first:

diskpart
list volume
exit

Look for the largest NTFS volume and note its letter. Then inject the driver offline:

dism /Image:D:\ /Add-Driver /Driver:E:\RST /Recurse

Replace D:\ with your Windows volume letter and E:\RST with the path to the driver folder on your USB. Reboot. Windows now has iaStorVD.sys on the installed volume and should clear the BSOD on first start. You can install the full Intel RST application from within Windows afterward if you need the storage management features.

The Dell 7630 BIOS situation

Multiple Dell community threads confirm the Inspiron 16 7630 does not expose a VMD or SATA Operation toggle in its standard BIOS — VMD is locked on. The BIOS toggle workaround available on some older Inspiron models simply does not apply here. Driver injection is the only supported path unless a future BIOS update changes things.

One thing worth keeping in mind: if you later enable BitLocker, make sure the Intel RST driver stays healthy. A Windows Update that removes or corrupts iaStorVD.sys will cause the identical BSOD on next cold boot — at which point the WinRE recovery method above is again the fastest fix.

Sources


Similar Posts