Memory utilization

(imported topic written by dmoore23)

I have a specific need to be able to lok at the memory usage on PC’s. I realize that by the time I see the data in the BES console, it will be outdated and that’s OK at this point. Is this possible via BigFix? I believe it is and perhaps it is just a simple wmi call but I am unsure.

Thanks in advance fo any and all help!

David

(imported comment written by Lee Wei)

Maybe you can give this WMI query a try.

selects “WorkingSetSize from win32_process” of wmi

You can read about the Win32_Process class from the Microsoft site at:

http://msdn.microsoft.com/en-us/library/aa394372(VS.85).aspx

Here is a version that is suitable for adding Managed Properties in the BigFix Console:

if (exists wmi) then (sum of ((string values of selects “WorkingSetSize from win32_process” of wmi) as integer) / (1024*1024)) as string & " MB" else “Not available”

The reported number does not reconcile with the info provided by Task Manager. However, since we also have the issue where the reported data is a few minutes out of date, I am guessing you just need to get a general sense, so this is worth a try.

Lee Wei