PowerShell Logo Small

Get-ClusterSharedVolume



This is the built-in help made by Microsoft for the command 'Get-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

Gets information about Cluster Shared Volumes in a failover cluster.

SYNTAX


Get-ClusterSharedVolume [[-Name] <StringCollection>] [-Cluster <String>] [-InputObject <PSObject>] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Get-ClusterSharedVolume cmdlet gets information about Cluster Shared Volumes in a failover cluster.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?LinkId=321041
Add-ClusterSharedVolume
Move-ClusterSharedVolume
Remove-ClusterSharedVolume

REMARKS

<

Examples


Example 1

PS C:\>Get-ClusterSharedVolume
Name State Node
---- ----- ----
Cluster Disk 3 Online node1
Cluster Disk 4 Online node2



This example lists all the Cluster Shared Volumes on the local cluster.




Example 2

PS C:\>Get-ClusterSharedVolume -Cluster cluster1
Name State Node
---- ----- ----
Cluster Disk 1 Online node4



This example lists all the Cluster Shared Volumes on the cluster named cluster1.




Example 3

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



This example displays the state of the Cluster Shared Volume called Cluster Disk 4.