2

Failover cluster feature is already installed in this 2 nodes cluster since many months everything was working fine since yesterday. However, I don't see the Failover Cluster Manager console anywhere, not in MMC, not in the Server Manager's list of Tools, not in System32 folder. The cluster commands through Powershell is working fine. I have checked and confirmed that WMI is working fine and the feature is installed. The server was rebooted yesterday.

Please help to get the console back.

3 Answers3

2

It seems that you are trying to connect from another server, please check it. What server version do you have?

batistuta09
  • 8,981
  • 10
  • 23
0

With the Get-WindowsFeature -Name *failover* PowerShell cmdlet you can check/confirm that management tools are installed on the server. If for some reason they don't seem to be installed you can do it with the install-windowsfeature just to include the management tools parameter.

Humberto Castellon
  • 879
  • 1
  • 7
  • 17
0
Remove-WindowsFeature -Name  RSAT-Clustering-Mgmt  
Install-WindowsFeature -Name  RSAT-Clustering-Mgmt 
Greg Askew
  • 35,880
  • 5
  • 54
  • 82