TMitchell wrote:
> Windows XP SP 3 on a Lenovo/ThinkPad T60P laptop with 2 Gb memory. Task
> Manager ALWAYS shows Page File usage to be above 1.21 Gb, and the
> computer runs everything very slowly. Is this amount of page file usage
> normal even during idle times of no program activity?
So what is consuming all your real system memory? In a command shell,
run:
tasklist | sort /+59 /r
where /+59 says to sort on the "Mem Usage" column. If your tasklist
output has this column start in a different position then you'll have to
adjust this number.
If you just want to show the top memory hogging processes, using the
filter parameter to the tasklist command, as in:
tasklist /fi "memusage ge 100000"
which shows only those processes eating up 100MB, or more. Change the
value to whatever cutoff you want. To see how to use tasklist.exe, run:
tasklist /?
So have you yet rebooted your host to restart Windows? Processes that
crash aren't releasing their memory allocation so if you have had lots
of crashes then lots of memory could still be allocated to remnant
processes or page space. The other problem is that you have a program
with a memory leak. It keeps consuming ever more memory (and eventually
page space). Add the "virtual memory size" column in Task Manager's
Processes tab to see the VM Size column.
Also read:
http://blogs.technet.com/b/perfguru/...k-manager.aspx
If you run the Performance Monitor (perfmon.exe) and then add a graph
for the [total] page file consumed, you might see the actual usage is
small.