如何查看小型转储中的 MINIDUMP_USER_STREAM_INFORMATION?
我的程序在不高兴时会创建一个小型转储,并且在转储中我们“应该”创建用户评论流。我说的是推测,因为我无法验证。
谁能告诉我神奇的 WinDbg
命令来查看存储在 MINIDUMP_USER_STREAM_INFORMATION
中的评论流?
感谢您的帮助。
My program creates a minidump when it gets upset and in the dump we're 'supposedly' creating a user comment stream. I say supposedly, since I can't verify it.
Can anyone tell me the magic WinDbg
command to see a comment stream stored inside a MINIDUMP_USER_STREAM_INFORMATION
?
Thanks for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
调试工具文件夹中的 dumpchk.exe 将转储转储的所有流。
dumpchk.exe, in debugging tools folder, will dump all streams of a dump.
Visual Studio 2010 SP1(高级版)不显示注释。
Visual Studio 2012 Update 2 (Premium) 也不显示注释。
当在WinDbg中打开转储时,它几乎会在顶部显示注释:
我不知道提取注释的具体命令,因此一旦清除命令窗口,信息就会丢失。
仅针对 Google:我来这里是为了了解如何使用 .dump /ma /c 命令获取在 WinDbg 中设置的注释。 SysInternals ProcDump 还创建带有注释的 .dmp 文件。
Visual Studio 2010 SP1 (Premium) does not show the comment.
Visual Studio 2012 Update 2 (Premium) does also not show the comment.
When opening the dump in WinDbg, it will show the comment almost at the top:
I don't know a specific command to extract the comment, so once you cleared the command window, the information is lost.
Just for Google: I came here to find out how to get the comment which was set in WinDbg using the .dump /ma /c command. SysInternals ProcDump also creates .dmp files with comments.