Windbg dump 命令失败,错误为 0x8007012b

发布于 2024-07-18 11:28:46 字数 628 浏览 13 评论 0 原文

客户正在尝试捕获挂起的小型转储。 他启动 WindDbg 并成功附加到该进程。 WinDbg 显示其标题:

Microsoft (R) Windows Debugger Version 6.11.0001.404 AMD64
Copyright (c) Microsoft Corporation. All rights reserved.

并枚举加载的模块。

他输入转储命令:

.dump /m c:\problem.dmp

它报告:

Creating c:\problem.dmp - mini user dump
WriteMemoryFromProcess.Read(0x1f1e000, 0x2000) failed, 0x8007012b
Dump creation failed, Win32 error 0n299
"Only part of a ReadProcessMemory or WriteProcessMemory request was completed."

错误 0x299 是: 由于文件系统限制,请求的操作无法完成。

您知道这意味着什么或如何诊断吗?

A customer is attempting to capture a minidump of a hang. He fires up WindDbg and successfully attaches to the process. WinDbg displays its header:

Microsoft (R) Windows Debugger Version 6.11.0001.404 AMD64
Copyright (c) Microsoft Corporation. All rights reserved.

and the loaded modules are enumerated.

He enters a dump command:

.dump /m c:\problem.dmp

It reports:

Creating c:\problem.dmp - mini user dump
WriteMemoryFromProcess.Read(0x1f1e000, 0x2000) failed, 0x8007012b
Dump creation failed, Win32 error 0n299
"Only part of a ReadProcessMemory or WriteProcessMemory request was completed."

Error 0x299 is:
The requested operation could not be completed due to a file system limitation

Any ideas what this means or how to diagnose?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

握住你手 2024-07-25 11:28:46

看一下 /mA 开关,它是 在 6.10.3 中引入

Have a look at the /mA switch, it was introduced with 6.10.3:

森林迷了鹿 2024-07-25 11:28:46

输入net helpmsg 299,错误299是

仅完成了ReadProcessMemory或WriteProcessMemory请求的一部分。

在winerror.h中,这是ERROR_PARTIAL_COPY

是进程64位进程? http://winprogger.com/?p=26 列出了可能发生此错误的几个原因。

Type net helpmsg 299, error 299 is

Only part of a ReadProcessMemory or WriteProcessMemory request was completed.

In winerror.h this is ERROR_PARTIAL_COPY

Is the process a 64 bit process? http://winprogger.com/?p=26 lists several reasons this error may occur.

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