1. Microsoft Learn
Configure failover and failback for a clustered role: This document explicitly distinguishes between failover settings and failback settings. It states
"Failback is the process of returning a clustered role to its preferred node after the node is back online." It then details the "Prevent failback" option
which is already configured in the scenario. It separately describes the "Maximum failures" setting as controlling restart attempts
confirming it is unrelated to failback. (See sections: "Configure failback" and "Configure failover").
2. Microsoft Learn
Set-ClusterGroup: The documentation for the PowerShell cmdlet used to manage cluster roles shows distinct parameters for these settings. The -FailbackType parameter controls failback behavior (PreventFailback
AllowFailback
etc.)
while the -FailoverThreshold parameter corresponds to "Maximum failures in the specified period." This separation in the management tool confirms they are independent configurations. (See parameter descriptions for -FailbackType and -FailoverThreshold).