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?
Asked
Active
Viewed 651 times
3 Answers
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
-
Glad to help... – joeqwerty Aug 17 '10 at 16:46
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