Posted On December 8, 2022

How To Delete Virtual Machine in Unsupported Configuration Status

kimconnect 0 comments
blog.KimConnect.com >> Virtualization >> How To Delete Virtual Machine in Unsupported Configuration Status

Possible Errors in VMM Console:

Error (20408)
VMM could not get the specified instance Msvm_VirtualSystemSettingData.InstanceID="Microsoft:1D78A299-C989-40FC-BC5C-B54934A126B7" of class Msvm_VirtualSystemSettingData on the server NODE002. The operation failed with error HRESULT 0x80004005 The WS-Management service cannot process the request. The service cannot find the resource identified by the resource URI and selectors.

Recommended Action
Ensure the provider is running, and then try the operation again.
Error (20411)
VMM could not invoke method ImportSystemDefinition on Msvm_VirtualSystemManagementService: Hyper-V Virtual System Management Service (Name = "vmms", CreationClassName = "Msvm_VirtualSystemManagementService", SystemCreationClassName = "Msvm_ComputerSystem", SystemName = "NODE002") on the server NODE002. Failed with error HRESULT 0x80338029 The WS-Management service cannot complete the operation within the time specified in OperationTimeout.

Recommended Action
Ensure the provider is running, and then try the operation again.

Warning (10655)
Hardware changes while cloning a Hyper-V virtual machine, VMware virtual machine, or stored virtual machine are not supported and were ignored.

Recommended Action
Make any hardware changes to the virtual machine after the cloning operation is complete.
Error (809)
VMM cannot remove the virtual machine because it is in the Unsupported Cluster Configuration state.

Recommended Action
Change the virtual machine's state, and then try the operation again.

Resolution:

# Resolution
$vmName='TESTVM003'
Get-SCVirtualMachine $vmName|Remove-SCVirtualMachine -Force

Leave a Reply

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

Related Post

VMWare and AWS Domain Controller Best Practices

VMware:AWS:https://aws.amazon.com/windows/resources/whitepapers/1. Controlling clock driftKerberos is used for authentication protocol; thus, time synchronization is very criticalMethod…

ESX & Enterasys LAG Configurations

Requirements for ESX and LACP compatibility of Enterasys core switches:1. static LAG2. vlan egress port…

PowerShell: Set Virtual Machine Default Paths on Hyper-V Host of a Cluster

$newVirtualMachinePath='D:\VirtualMachines' $newVirtualHardDiskPath='D:\VirtualMachines' function getHyperVHostsInForest{ function includeRSAT{ $ErrorActionPreference='stop' [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 #$rsatWindows7x32='https://download.microsoft.com/download/4/F/7/4F71806A-1C56-4EF2-9B4F-9870C4CFD2EE/Windows6.1-KB958830-x86-RefreshPkg.msu' $rsatWindows7x64='https://download.microsoft.com/download/4/F/7/4F71806A-1C56-4EF2-9B4F-9870C4CFD2EE/Windows6.1-KB958830-x64-RefreshPkg.msu' $rsatWindows81='https://download.microsoft.com/download/1/8/E/18EA4843-C596-4542-9236-DE46F780806E/Windows8.1-KB2693643-x64.msu' $rsat1709 =…