如何查看小型转储中的 MINIDUMP_USER_STREAM_INFORMATION?

发布于 2024-11-09 11:59:23 字数 176 浏览 3 评论 0原文

我的程序在不高兴时会创建一个小型转储,并且在转储中我们“应该”创建用户评论流。我说的是推测,因为我无法验证。

谁能告诉我神奇的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

孤城病女 2024-11-16 11:59:23

调试工具文件夹中的 dumpchk.exe 将转储转储的所有流。

dumpchk.exe, in debugging tools folder, will dump all streams of a dump.

浅唱々樱花落 2024-11-16 11:59:23

Visual Studio 2010 SP1(高级版)不显示注释。
Visual Studio 2012 Update 2 (Premium) 也不显示注释。

当在WinDbg中打开转储时,它几乎会在顶部显示注释:

Line 1: WinDbg version
Line 2: Copyright
Line 3: Dump name
Line 4: Dump type
Line 5: Dump comment (if available) <--
...

我不知道提取注释的具体命令,因此一旦清除命令窗口,信息就会丢失。

仅针对 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:

Line 1: WinDbg version
Line 2: Copyright
Line 3: Dump name
Line 4: Dump type
Line 5: Dump comment (if available) <--
...

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文