Which do you do first to avoid service interruption? Or does it not matter?
Is it:
Suspend-ClusterNode -Drain
Get-ClusterNode $env:COMPUTERNAME | Get-ClusterGroup | Move-ClusterGroup
or:
Get-ClusterNode $env:COMPUTERNAME | Get-ClusterGroup | Move-ClusterGroup
Suspend-ClusterNode -Drain
The microsoft doc for Move-ClusterGroup says:
"Moving a resource group is a way of simulating failover. It is also an appropriate step to take in preparation for routine maintenance on a node."
Which makes me think you move before suspending. So which cmdlet do you issue first?