To resolve the issue of disks being moved to the IDE bus during the conversion of VMware virtual machines to Hyper-V, you need to ensure that the virtual hard disks are configured correctly. The error indicates that the virtualization software does not support virtual hard disks on an IDE bus for the specified host.
Here are the steps you can take to handle this:
- Change Disk Adapter Type: Before conversion, ensure that the virtual disks are connected to a SCSI adapter instead of an IDE adapter. You can do this by modifying the virtual machine settings in VMware.
- Locate the primary disk (.vmdk) file and change the adapter type from IDE to SCSI (e.g.,
ddb.adapterType = "lsilogic"orddb.adapterType = "buslogic").
- Locate the primary disk (.vmdk) file and change the adapter type from IDE to SCSI (e.g.,
- Remove and Reattach Disks: After changing the adapter type, remove the disk from the virtual machine settings and then reattach it as a SCSI disk.
- Verify Configuration: Ensure that all disks intended for conversion are compatible with Hyper-V and are not connected to an IDE bus.
- Use System Center Virtual Machine Manager (SCVMM): Utilize SCVMM for the conversion process, as it provides a wizard-based experience that can help avoid common pitfalls during the migration.
By ensuring that the disks are properly configured to use SCSI instead of IDE, you should be able to successfully migrate your VMware VMs to Hyper-V without encountering this issue.
References: