List total memusage by 32bit programs and 64bit programs
Posted
by
egon
on Server Fault
See other posts from Server Fault
or by egon
Published on 2010-02-12T20:53:54Z
Indexed on
2011/02/09
23:27 UTC
Read the original article
Hit count: 418
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.
© Server Fault or respective owner