This is an old revision of the document!
See also more Hyper-V pages
http://kristiannese.blogspot.com/2010/10/how-to-make-your-existing-vms-highly.html
http://technet.microsoft.com/en-us/library/hh831579
http://v-enfra.blogspot.com/2012/09/failover-cluster-feature-in-microsoft.html
http://en.community.dell.com/dell-groups/dtcmedia/m/mediagallery/19861461/download.aspx
The Hyper-VTM Failover Cluster should be created in the following order:
For a step-by-step guide on Hyper-V Failover Clustering see the Microsoft TechNet article: http://technet.Microsoft.com/en-us/library/cc732181.aspx.
Redundancy for iSCSI connections is typically done with MPIO, not with bonding/teaming.
Physical NICs should be configured prior to creating the Hyper-V virtual network interfaces. The Virtual Networks can later be added using the Hyper-V Virtual Network Manager.
You can configure and manage failover clustering and live migration by using Server Manager on a Windows Server 2012 computer.
get-windowsfeature | findstr /i cluster dism /online /get-features | more #to list FeatureName dism /online /enable-feature /featurename:[FeatureName]
Example:
Install-WindowsFeature -Name Failover-Clustering
Or you can install from remote using below command:
Install-WindowsFeature -Name Failover-Clustering –ComputerName [YourServerName]
After your installation, you can verify the feature installation using the Get-WindowsFeature
command:
get-windowsfeature | findstr /i cluster
Install Windows Server 2012.
Install the OOBE feature:
dism /online /enable-feature /featurename:OEM-Appliance-OOBE
Install the Hyper-V role and the Failover Clustering feature: