Link to home
Start Free TrialLog in
Avatar of Murty M
Murty MFlag for India

asked on

PowerShell Script Request: "I want a report of VMs having 16 GB of RAM."

PowerShell Script Request: "I want a report of VMs having 16 GB of RAM." 

Citrix 1912

Avatar of dfke
dfke

Hi,

I think you need to elaborare and ask a question.

Cheers

Maybe these?


https://community.spiceworks.com/topic/1962022-powershell-hyper-v-get-vm-stats

 get-vm vmname| select *mem*

Open in new window

https://stackoverflow.com/questions/53160190/azure-powershell-get-list-of-vms-with-size

[array]$VMs = Get-AzureRMVm 

foreach ($VM in $VMs)
 {
Write-Output "VM: $($VM.Name)"
Write-Output "VM Size: $($VM.VmSize)"
 }

Open in new window

Hi,

It could be an inventory question, but Murty needs to confirm that.

As you're using Citrix:

Get-XenVM | Where-Object { $_.MemoryMB -eq 16384 } | Select-Object Name, MemoryMB

Open in new window



Cheers
Avatar of Murty M

ASKER

Citrix 1912
Hypervisor: Nutanix
"I want a report of VMs having 16 GB of RAM."
Server and Desktop VMs list.
i.e XenApp and XenDesktops with Management servers inventory (RAM, VCpu and HDD) report
ASKER CERTIFIED SOLUTION
Avatar of dfke
dfke

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial