0

I am looking for a program shows how much committed memory a program has on Windows 7 SP1 x64 Ultimate. Any license or price is fine.

By committed memory I mean whatever contributes to the 42 GB shown in this screenshot below:

enter image description here

3
  • As far as I remember you should be able to do that in taskmanager itself. Just go to the "Processes" tab and add the column for "Commit size".
    – Robert
    Commented Oct 10, 2021 at 11:36
  • @Robert Thanks, the column for "Commit size" seems inaccurate: superuser.com/a/1680921/116475 Commented Oct 11, 2021 at 0:17
  • The use Powershell. One of these should be the correct value: Get-Process | Sort PagedMemorySize64 | Select Name, PagedMemorySize64, PeakPagedMemorySize64
    – Robert
    Commented Oct 11, 2021 at 7:35

0