0

Is there any sort of tool (either 3rd party or internal to Windows) to view what processes, handles, etc. are using what amount (absolute or percentage) of the kernel nonpaged memory pool in Windows XP SP3?

russcollier
  • 203
  • 2
  • 10

3 Answers3

1

You can start perfmon, select the Process performance object, select the Pool Nonpaged Bytes counter, select all instances and click the Add button. This will show you how much Pool Nonpaged bytes memory is being used by each process currently running.

joeqwerty
  • 109,901
  • 6
  • 81
  • 172
0

You can also use Poolmon.

Holocryptic
  • 5,665
  • 2
  • 29
  • 37
0

Run the Windows debugger (windbg.exe). Use the following command to display nonpaged and paged pool usage, sorted by nonpaged pool:

!poolused 2

You can also get a fairly good overview of pool usage and maximums using:

!vm

Debugging Tools - Getting Started
http://www.microsoft.com/whdc/devtools/debugging/debugstart.mspx

Greg Askew
  • 35,880
  • 5
  • 54
  • 82