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?
According to Microsoft the recommended sequence is to move then suspend https://technet.microsoft.com/en-us/library/ee461051.aspx