Destroy old legacy hyperv cluster

Sprocket 21 Reputation points
2022-09-02T16:02:25.39+00:00

We have a 2019 Cluster than is running and hosts all our guests. Unfortunately we had a previous 2016 cluster that the servers and storage array were powered off and reused. The cluster was never gracefully destroyed so we have the legacy settings in AD and are getting event log alerts for it.
I did manage to get one node powered up, but the cluster manager will not connect.

How do I safely remove the old cluster from the domain?

Windows for business | Windows Server | Storage high availability | Clustering and high availability
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Wesley Li-MSFT 4,576 Reputation points Microsoft External Staff
    2022-09-09T02:56:39.49+00:00

    HI,

    To remove the cluster use Powershell

    Run powershell as an administrator

    Import-Module FailoverClusters

    Remove-Cluster

    then clear-clusternode <> do this on both nodes

    Below is a link of all powershell commands:
    http://technet.microsoft.com/en-us/library/ee461009.aspx
    https://learn.microsoft.com/en-us/powershell/module/failoverclusters/remove-cluster?view=windowsserver2022-ps

    Get-Cluster -Name Cluster1 | Remove-Cluster -Force -CleanupAD
    This example destroys the cluster named Cluster1, removes cluster configuration information from the cluster nodes, and deletes the cluster objects in Active Directory. The cmdlet does not prompt for confirmation.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.