Move-ClusterGroup
Moves a clustered role (a resource group) from one node to another in a failover cluster.
Move-ClusterGroup
[[-Name] <String>]
[[-Node] <String>]
[-IgnoreLocked]
[-Wait <Int32>]
[-InputObject <PSObject>]
[-Cluster <String>]
[<CommonParameters>]
The Move-ClusterGroup
cmdlet moves a clustered role (a resource group) from one node to another
in a failover cluster.
Moving a resource group is a way of simulating failover. Running this cmdlet is also an appropriate step to take in preparation for routine maintenance on a node.
Move-ClusterGroup -Name MyFileServer
This example moves the clustered service called MyFileServer
from the current owner node to any
other node.
Move-ClusterGroup -Name MyFileServer -Node node2
This example moves the resource group called MyFileServer
from the current owner node to the node
named node2
.
Get-ClusterNode node3 | Get-ClusterGroup | Move-ClusterGroup
This example moves all resource groups that are currently owned by the node named node3
to other
nodes. Use this cmdlet before performing maintenance on the specified node.
Move-ClusterGroup -Name MyFileServer -Node node2 -Wait 0
This example moves the resource group called MyFileServer
from the current owner node to the node
named node2
. Information about MyFileServer
is displayed immediately, while it is in the process
of being moved.
Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is
.
or it is omitted, then the cmdlet runs on the local cluster.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Specifies that locked groups are ignored when running the cmdlet.
Type: | SwitchParameter |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Specifies the resource group to move.
Type: | PSObject |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Specifies the name of the resource group to move.
Type: | String |
Position: | 0 |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Specifies the name of the cluster node to which to move the resource group.
Type: | String |
Position: | 1 |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Specifies the time in seconds to wait for the cmdlet. If the Wait parameter isn't specified,
then the cmdlet waits for completion. If -Wait 0
is specified, then the call is initiated and the
cmdlet returns without waiting.
Type: | Int32 |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Microsoft.FailoverClusters.PowerShell.ClusterGroup
Microsoft.FailoverClusters.PowerShell.ClusterGroup