Hi @Chris Davis
Welcome to the Microsoft Q&A Platform! Thank you for asking your question here.
In the Azure portal, find your VM and check the settings. Look for the DVD drive and make sure it's not still attached. If it is, go ahead and set it to None or remove it.
Try turning off the VM, wait a few seconds, and then turn it back on. Sometimes this helps clear up issues after a migration.
If that doesn’t work, you can use a PowerShell command to remove the DVD drive. Here's an example of the command:
Get-AzVM -ResourceGroupName <YourResourceGroup> -Name <VMName> | Set-AzVM -RemoveDataDisk <DriveName>
Just replace <YourResourceGroup>
, <VMName>
, and <DriveName>
with your actual details.
If you moved the VM from an on-premises Hyper-V server, double-check the settings there to make sure the DVD drive was removed before migrating to Azure.
Finally, if nothing else works, you may need to restart the migration process to make sure the DVD drive isn’t attached during the move.
If your any concern, please go through this link: -
https://learn.microsoft.com/en-us/windows-server/manage/windows-admin-center/azure/manage-vm
If you have any further queries, do let us know.