diff --git a/Scripts/Get-TotalMemoryAllocation.ps1 b/Scripts/Get-TotalMemoryAllocation.ps1 new file mode 100644 index 0000000..6e6736d --- /dev/null +++ b/Scripts/Get-TotalMemoryAllocation.ps1 @@ -0,0 +1,6 @@ +#Script gets total memory allocation in GB of all powered on VMs in the environment +#Author: Chris Bradshaw via https://isjw.uk/powercli-snippet-total-memory-allocation/ + +[System.Math]::Round(((get-vm | + where-object{$_.PowerState -eq "PoweredOn" }).MemoryGB | + Measure-Object -Sum).Sum ,0)