Are there any Generic NVMe Drivers for Virtual NVMe Controllers Windows 7 64?

Where/how did you modify the Virtual NVMe Controller and which “genreric” Intel driver did you use?
Regards
Dieter (alias Fernando)



As you can see from my screenshot, I am using bhyve hypervisor in FreeBSD 13.0 Current.
The source code of bhyve, about nvme controller, is pci_nvme.c, you can get it from
usr.sbin/bhyve/pci_nvme.c

at line 1976, the code is

1
2
 
	pci_set_cfgdata16(pi, PCIR_DEVICE, 0x0A0A);
pci_set_cfgdata16(pi, PCIR_VENDOR, 0xFB5D);
 

You can set it to 0x8086, that is intel.
and 0953, which is P3605,
As result VEN_8086&DEV_0953.
I think you can take any exists value from intel driver, which is IaNVMe.inf

And I downloaded driver from intel website here:
Datacenter-NVMe-Microsoft-Windows-Drivers-for-Intel-SSDs

When Windows 7 boot from CDROM, in select disk, load the intel driver, the virtual NVMe disk will appear.