Installing Windows 7 on an m.2 NVMe drive?

6

1

I have an Asus Sabertooth Z170 motherboard, with a Samsung 950 Pro m.2 NVMe drive on it. I've heard in the past that installing Windows 7 on an NVMe drive was a significant amount of work. Its now August 2016, is it still difficult? I've seen updates from Microsoft saying they've added support for NVMe in Windows 7.

Can I just download Windows 7 from Microsoft (https://www.microsoft.com/en-us/software-download/windows7) and put it on a USB drive and install?

Is it harder than that?

Jason Axelrod

Posted 2016-08-24T03:10:49.570

Reputation: 239

were you able to install Win7 after adding the updates and driver to the WIM? – magicandre1981 – 2016-11-12T07:11:55.077

Answers

3

Winaero posted a guide how to do this. You need to download the updates KB2990941, KB3087873, the NVMe driver from samsung and integrate them via DISM into your install.wim/boot.wim:

dism /Mount-Image /ImageFile:c:\temp\src\sources\boot.wim /Index:1 /MountDir:c:\temp\mount
dism /Image:C:\temp\mount /Add-Package /PackagePath:c:\temp\hotfix
dism /Image:C:\temp\mount /Add-Driver /Driver:c:\temp\drivers /Recurse
dism /Unmount-Image /MountDir:C:\temp\mount /Commit
dism /Mount-Image /ImageFile:c:\temp\src\sources\boot.wim /Index:2 /MountDir:c:\temp\mount
dism /Image:C:\temp\mount /Add-Package /PackagePath:c:\temp\hotfix
dism /Image:C:\temp\mount /Add-Driver /Driver:c:\temp\drivers /Recurse

magicandre1981

Posted 2016-08-24T03:10:49.570

Reputation: 86 560

You can also use a tool like NTLite to "slipstream" these drivers/hotfixes into an installation ISO more easily than using Dism. – WackGet – 2016-11-11T17:54:37.263

2

Here is an Intel (.PDF) that explains more.

I've used NTLite before and it's a great utility. But NTLite alone can't do all the mods needed to make a Windows 7 install DVD for this purpose. But I did use it to make the final ISO, after completing "Method 1" from the PDF.

I added in the recommended IRST and USB drivers from the .PDF using NTLite.

The modded Windows 7 install DVD booted and "saw" the NVMe PCI-E SSD without loading any other drivers.

Because of the use of the setup.exe from the Windows 10 ISO, the background of the installation was purple like Windows 10, but it really was Windows 7.

Windows 7 Pro x64 is now successfully installed from only the DVD on an Asus Z270-P motherboard with an Intel 6 series PCIe M.2 SSD.

www.intel.com/content/dam/support/us/en/documents/solid-state-drives/Intel_6_Series_PCIeNVMe_InstallGuide.PDF

Neoamor

Posted 2016-08-24T03:10:49.570

Reputation: 21

Welcome to Super User! Whilst this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference.

– gronostaj – 2017-04-18T22:59:14.857

1"I added in the recommended IRST and USB drivers from the .PDF using NTLite." Be specific; You don't indicate what drivers are required. How can somebody build their own working ISO if you don't provide that information. – Ramhound – 2017-04-18T23:15:18.673

1That information is in the .PDF that I linked. – Neoamor – 2017-04-18T23:20:42.393