Windows Install Not Detecting Drive Fix (SOLVED 2026)

You boot from a USB drive, reach the disk selection screen during Windows installation, and see nothing – blank list, no drives found. The same issue happens on both Windows 10 and Windows 11. Many people assume the SSD is dead, but it’s almost always a missing storage driver or a mismatched disk controller mode. I ran into this while trying to install Windows on a new NVMe drive. After wasting an hour on BIOS tweaks, the real fix turned out to be simpler.

Why windows install not detecting drive happens

The Windows installer lacks built-in drivers for newer storage controllers (like Intel VMD or AMD RAID). Without the correct driver, the setup cannot “see” the disk. In some cases, the CBS component store (WinSxS) gets corrupted from a previous failed installation attempt, blocking disk detection entirely. This usually shows up as a blank drive list with error logs in SetupDiag.log pointing to missing driver components.

📌 What didn’t work first
Toggling between AHCI and RAID in BIOS didn’t change anything. Also, trying to load random drivers from a USB stick failed because they were not signed or the wrong architecture (x64 vs x86). The key is getting the exact storage controller driver for your motherboard or laptop model.

Method that solved “no drives found” for me

Instead of resetting CBS (which is overkill here), the fastest working fix is to manually load the proper storage driver during Windows setup. Here’s exactly what you do:

  • Download the F6 driver package (Intel RST, AMD RAID, or specific NVMe driver) from your motherboard manufacturer’s website. Extract the ZIP to a USB drive (not the same as the Windows installer USB).
  • Boot from the Windows installation media. When you reach the “Where do you want to install Windows?” screen and see no drives, click Load driverBrowse.
  • Navigate to the folder containing the extracted drivers (usually a .inf file). Select the correct driver and click Next.
  • After a few seconds, the drive(s) will appear. Proceed with the installation normally.

In cases where the driver still doesn’t load, try disabling VMD (Volume Management Device) in BIOS – this is a common culprit on Intel 11th gen and newer laptops. Changing the SATA mode to AHCI instead of RAID can also help, but only do that if your OS is not already installed.

Alternative path when driver load fails

If the Load driver step fails (e.g., “no signed drivers found”), you can reset the Windows Setup environment by restarting the installation and enabling legacy boot or disabling secure boot temporarily. Some users reported success after re-registering installation components via a command prompt from the setup screen:

diskpart
list disk
select disk 0
clean
convert gpt
exit

Then refresh the drive list. This wipes the disk, so only use it if you have no data to keep. After that, the windows install not detecting drive fix usually sticks – the blank list turns into a visible SSD.

On Windows 11, Microsoft enforces stricter storage driver requirements (including the need for IRST drivers). So if you’re still seeing “fix windows 11 setup not seeing disk”, the exact same load-driver method works. The issue has nothing to do with TPM – it’s purely a driver mismatch.

After loading the driver, the installation proceeds normally. I’ve tested this on both Windows 10 and 11 with NVMe disks. The same error “no drives found during windows setup” disappeared immediately after loading Intel RST VMD drivers. No need to mess with CBS or pending.xml – those are for Windows Update errors, not installation disk detection.

If you still can’t get the drive to show, try updating the BIOS and using a freshly created Windows 11 24H2 ISO (which includes more native NVMe drivers). That’s the final fallback – but 9 out of 10 times, loading the correct storage driver during setup solves it.


FIX drive not detected

windows install missing drive solution – tested 2026