Windows 7 P2V conversion failing with IRQL_NOT_LESS_OR_EQUAL

1

I'm trying to salvage the Windows 7 Professional 32 bit installation of a defect Fujitsu Amilo notebook by converting it to a VM running under CentOS 6 with KVM. My steps:

  1. Connect the notebook's hard disk to the CentOS machine through a USB-SATA adapter and create an image from it with the command

sudo dd if=/dev/sdb of=/media/ImageStore/notebook.img bs=64M

  1. Create a VM in Virtual Machine Manager, selecting "import existing disk image", specifying the image I just created, and adding a CDROM drive connected to a Windows 7 installation CD image.

  2. Boot the VM from the CD image, select "Computer repair options" - "Command Line" and enter the command regedt32 to run Registry Editor.

  3. Load structure C:\Windows\System32\config\SYSTEM (the HKLM hive from the disk image) into HKLM.

  4. Within the ControlSet001\services\atapi and ControlSet001\services\intelide keys of the loaded hive, change the Start values from 3 to 0.

  5. Unload the hive loaded in step 4.

  6. Reboot the VM from the hard disk image.

Windows starts successfully, detects a lot of new hardware (as expected) and proceeds to install device drivers for it without giving me any possibility of intervention. At that point it is perfectly usable although it pops up a few error messages complaining about hardware that's no longer there, like the ATI graphics chip and the Wistron function keys.

Once it has finished installing drivers it pops up a message requesting a reboot for the changes to be effective. This reboot fails with a BSOD 0x000000A IRQL_NOT_LESS_OR_EQUAL. Windows Startup Repair runs and reports the problem signature BadDriver but declares itself unable to repair the system.

The whole process is repeatable, ie. I can create a new image and the process will lead to the same result. It makes no difference if I boot in Safe Mode.

One of the automatically installed drivers is AMD PCI Express (3GIO) Filter Driver. If I uninstall that driver via Device Manager before the reboot, the VM comes up successfully a second time. However, Windows immediately proceeds to install that driver again, asking for another reboot which then fails with IRQL_NOT_LESS_OR_EQUAL as before.

How can I prevent the deadly driver being installed during the next attempt?

Tilman Schmidt

Posted 2017-05-13T19:01:43.340

Reputation: 327

JFTR the Microsoft Technet community couldn't come up with a solution or even an explanation of what was going on, either. I finally gave up on this, salvaged the user files from the notebook disk drive and reinstalled everything from scratch in a new Windows VM. Later someone recommended NirSoft's ServiWin utility but I couldn't test it anymore. – Tilman Schmidt – 2017-08-20T18:49:39.873

No answers