phemt
#1
Hi everyone,
a need help to find an equivalent to the linux command “free -m” in Powershell
this is the linux output look at the picture here:
im looking for the exact same result in powershell but im really struggling to find the right one
Thanks everyone for the help 
Olaf
#2
Steve,
Welcome to the forum. 
I doubt that you’ll find a built in way to get the exact same result. But you may start with something like this:
Get-CIMInstance Win32_OperatingSystem |
Select-Object -Property *memory*
phemt
#3
Hi thank you for your quick response
as you said its not exactly the same but it will make the job
Thank you again!