-ma full memory dump, always do this on 2003 as 4gb is not much and it is good to have the heap

-mp miniplus, 2007 – 2010 grabs the essential linked heap memory

-n 3 Typical hang dump to get 3 dumps - We typically want 3 dumps, so we can see what changes, or what DOESN'T change, in memory (i.e., is the same thread waiting in all 3 dumps?). A single dump file is typcially not that useful.

-accepteula self explanatory

-e create a dump file only when an UNHANDLED exception occurs. We're typically not interested in HANDLED exceptions, because those types of exceptions get HANDLED and your program will continue to run.

And last but not least, we need a place to store the dump file

So, an example of a dump of a typical Exchange store.exe hang would be something like this:

Procdump -e –mp store.exe –n 3 –accepteula  d:\dumps\store_issue.dmp

This will set up procdump to monitor store.exe and when/if an unhandled exception occurs, it will create 3 dump files and store them in the specified location.

最新文章

  1. Java集合-Python数据结构比较
  2. proj.4投影变换图示
  3. IBM云的商业动作之我见(1):IBM 收购 OpenStack 托管私有云公司 Blue Box [IBM Acquired Blue Box]
  4. WebLogic10安装图文教程
  5. iptables的详细介绍及配置方法*
  6. .NET 里 静态方法的并发处理
  7. unity打包android游戏部分问题总结
  8. 洛谷 1503 鬼子进村 (set)
  9. CSS里的 no-repeat 是什么意思
  10. SQL Server 对象
  11. STL 源代码分析 算法 stl_algo.h -- includes
  12. 当谈到 GitLab CI 的时候,我们该聊些什么(上篇)
  13. PHPMailer发送邮件中文附件名是乱码
  14. Java通过实现Runnable接口来创建线程
  15. Finally! I do understand "flex-basis"
  16. jquery插件之一些小链接
  17. 为奋战在HIS创新路上的医院信息科赋能
  18. nrf52832板子焊接后总结的经验
  19. django(python manage.py imgrate)同步数据库出错后的解决办法
  20. npm脚本探析

热门文章

  1. Apicloud_(模板)登陆注册功能模板
  2. R_Studio(时序)Apriori算法寻找频繁项集的方法
  3. Yarn 内存分配管理机制及相关参数配置
  4. Zookeeper(二)数据模型
  5. Watir单元库
  6. JS检测浏览器版本信息(包含IE11),并动态添加样式
  7. 查询redis中没有设置过期时间的key
  8. char类型可不可以存储一个汉字
  9. 一、基础篇--1.1Java基础-hashCode和equals方法的区别和联系
  10. leetcode-easy-others-461. Hamming Distance