PowerShell Logo Small

Move-ClusterSharedVolume



This is the built-in help made by Microsoft for the command 'Move-ClusterSharedVolume', in PowerShell version 5 - as retrieved from Windows version 'Microsoft Windows Server 2012 R2 Standard' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

Moves a Cluster Shared Volume (CSV) to ownership by a different node in a failover cluster.

SYNTAX


Move-ClusterSharedVolume [[-Name] <String>] [[-Node] <String>] [-Cluster <String>] [-InputObject <PSObject>] [-Wait <Int32>] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Move-ClusterSharedVolume cmdlet moves a Cluster Shared Volume (CSV) to ownership by a different node in a failover cluster.


On a failover cluster that uses CSVs, at any given time, access to each CSV is controlled by a particular node, called the owner of that CSV. However, a single CSV can
contain virtual hard disk (VHD) files used by multiple clustered virtual machines that are distributed across multiple cluster nodes.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?LinkId=321047
Add-ClusterSharedVolume
Get-ClusterSharedVolume
Remove-ClusterSharedVolume
Repair-ClusterSharedVolume
Resume-ClusterResource
Start-ClusterResource
Stop-ClusterResource
Suspend-ClusterResource

REMARKS

<

Examples


Example 1

PS C:\>Move-ClusterSharedVolume –Name "Cluster Disk 3"
Name State Node
---- ----- ----
Cluster Disk 3 Online node2



This example moves the Cluster Shared Volume called Cluster Disk 3 to another cluster node.




Example 2

PS C:\>Move-ClusterSharedVolume –Name "Cluster Disk 3" -Node node1
Name State Node
---- ----- ----
Cluster Disk 3 Online node1



This example moves the Cluster Shared Volume called Cluster Disk 3 to the node named node1.