How to get the total amount of memory used by 32bit applications and 64bit applications from the command line in Windows.
I tried using tasklist /FI "MODULES eq wow64.dll" /FO CSV
and then parsing the output and summing. But tasklist
just freezes with any command that has something to do with modules (tasklist /m
and tasklist /fi "modules eq wow64.dll"
freeze).
Are there any alternatives? Or some idea why tasklist
freezes.