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.