1

According to task manager my committed memory is 7.1 GB but I can only see my processes using around 3.6GB

I'm using Powershell and Get-Process | Select Name, PagedMemorySize, PrivateMemorySize to get the memory size for each process and adding either column.

Should I be using a different column? or do I need to add something else besides the processes memory usage?

Dan
  • 201

1 Answers1

0

This should match what you see in Task Manager

get-wmiobject win32_operatingsystem | Select @{L='commit';E={($_.totalvirtualmemorysize - $_.freevirtualmemory)*1KB/1GB}}
Dallas
  • 278