Summary: Learn how to use Windows PowerShell to query for free space in Cluster Shared Volumes.
How can I use Windows PowerShell to find the free space in all my Cluster Shared Volumes for Hyper-V in
Windows Server 2012 R2 or Windows Server 2012?
Use the Get-ClusterSharedVolume cmdlet with the –Cluster parameter and your Hyper-V cluster name.
Loop through each cluster shared volume and output a Windows PowerShell custom object to the pipeline.
The following example is a single-line command broken to display on the webpage:
Get-ClusterSharedVolume -Cluster HV-CLUSTER1 |
ForEach-Object {
[PSCustomObject]@{VolumeName = $_.Name; FreeSpace =$_.SharedVolumeInfo.Partition.FreeSpace}}
Note Today’s PowerTip is provided by Microsoft premier field engineer, Brian Wilhite