Posted On May 26, 2020

Hyper-V: How to Convert IDE to SCSI on a Guest VM

kimconnect 0 comments
blog.KimConnect.com >> Virtualization >> Hyper-V: How to Convert IDE to SCSI on a Guest VM
Plan A:

1. Clone the existing Guest VM as a full backup
2. While having target Guest VM powered off, edit its VHD file > change ddb.adapterType = “ide” to ddb.adapterType = “lsilogic”
3. Remove the drive from the Guest VM with the “DO NOT remove from virtual machine and delete files from disk” option
4. Add a new hard disk > choose the “Use an existing virtual disk” option > select the targeted hard disk

Plan B:

1. Revert changes by replacing the original VM with the cloned VM.

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Move Virtual Machine Storage Using VMM

# moveVmStorageUsingVmm.ps1 # Version 0.01 $vmNames=@( 'TESTVM0001', 'TESTVM0002', 'TESTVM0003' ) $storageLocations=@( 'C:\ClusterStorage\BLOB001', 'C:\ClusterStorage\BLOB002', 'C:\ClusterStorage\BLOB003' )…

Create a Report of MTU Settings on All Hyper-V Hosts in the Domain/Forest

# mtuReportAllHyperVHosts.ps1 # Ensure that AD management module is available for PS Session function includeRSAT{…