首页
社区
课程
招聘
[下载]Procdump 1.7[Published: January 11, 2010]
发表于: 2010-1-12 13:38 3254

[下载]Procdump 1.7[Published: January 11, 2010]

2010-1-12 13:38
3254
Web:http://technet.microsoft.com/en-us/sysinternals/dd996900.aspx

ProcDump v1.7
By Mark Russinovich

Published: January 11, 2010

Introduction

ProcDump is a command-line utility whose primary purpose is monitoring an application for CPU spikes and generating crash dumps during a spike that an administrator or developer can use to determine the cause of the spike. ProcDump also includes hung window monitoring (using the same definition of a window hang that Windows and Task Manager use) and unhandled exception monitoring. It also can serve as a general process dump utility that you can embed in other scripts.
Using ProcDump

usage: procdump [-64] [-c CPU usage [-u] [-s seconds] [-n exceeds]] [-h] [-e] [-t] [-ma] [-r] [-o] [[<process name or PID> [dump file]] | [-x <image file> <dump file> [arguments]]-64        By default Procdump will capture a 32-bit dump of a 32-bit process when running on 64-bit Windows. This option overrides to create a 64-bit dump.
-c        CPU threshold at which to create a dump of the process.
-e        Write a dump when the process encounters an unhandled exception.
-h        Write dump if process has a hung window.
-ma        Write a dump file with all process memory. The defaultdump format includes thread and handle information.
-n        Number of dumps to write before exiting.
-o        Overwrite an existing dump file.
-r        Reflect (clone) the process for the dump to minimize the time the process is suspended (Windows 7 and higher only).
-s        Consecutive seconds CPU threshold must be hit before dump is written (default is 10).
-t        Write a dump when the process terminates.
-u        Treat CPU usage relative to a single core.
-x        Launch the specified image with optional arguments.

To just create a dump of a running process, omit the CPU threshold. If you omit the dump file name, it defaults to <processname>.dmp.
Examples

Write up to 3 dumps of a process named 'consume' when it exceeds 20% CPU usage for three seconds to the directoryc:\dump\consume with the name consume.dmp:

C:\>procdump -c 20 -n 3 -o consume c:\dump\consume

Write a dump for a process named 'hang.exe' when one of it's windows is unresponsive for more than 5 seconds:

C:\>procdump -h hang.exe hungwindow.dmp

Launch a process and then monitor it for excessive CPU usage:

C:\>procdump -c 30 -s 10 -x consume.exe consume.dmp

Write a dump of a process named 'iexplore' to a dump file that has the default name iexplore.dmp:

C:\>procdump iexplore

[注意]传递专业知识、拓宽行业人脉——看雪讲师团队等你加入!

上传的附件:
收藏
免费 0
支持
分享
最新回复 (3)
雪    币: 4902
活跃值: (120)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
2
已经有了
http://bbs.pediy.com/showthread.php?t=94238
2010-1-12 13:52
0
雪    币: 227
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
3
嗯 已经知道了
和林版消息了 如需就删掉吧 哈哈 林版好快
呵呵 找不到删除的按钮
2010-1-12 14:03
0
雪    币: 97697
活跃值: (200744)
能力值: (RANK:10 )
在线值:
发帖
回帖
粉丝
4
CLOSE.
2010-1-12 14:16
0
游客
登录 | 注册 方可回帖
返回
//