You can get memory reporting of your Hyper-V clusters via this script. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 $Clusters = Get-Content C:\Cluster.txt foreach ($Cluster in $Clusters) { [int]$TotalFreeMemory = 0; [int]$TotalMemory = 0; $ClusterNodes = Get-Cluster $Cluster | Get-ClusterNode foreach […]
↧