windows windbg 转储命令失败,错误为 0x8007012b
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/842569/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
windbg dump command fails with error 0x8007012b
提问by sean e
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:
客户正在尝试捕获挂起的小型转储。他启动 WindDbg 并成功连接到该进程。WinDbg 显示其标题:
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
错误 0x299 是:由于文件系统限制,无法完成请求的操作
Any ideas what this means or how to diagnose?
任何想法这意味着什么或如何诊断?
采纳答案by Volker von Einem
Have a look at the /mA switch, it was introducedwith 6.10.3:
看看 /mA 开关,它是在 6.10.3中引入的:
回答by Stephen Nutt
Type net helpmsg 299, error 299 is
输入net helpmsg 299,错误 299 是
Only part of a ReadProcessMemory or WriteProcessMemory request was completed.
仅部分 ReadProcessMemory 或 WriteProcessMemory 请求已完成。
In winerror.h this is ERROR_PARTIAL_COPY
在Winerror.h中,这是ERROR_PARTIAL_COPY
Is the process a 64 bit process? http://winprogger.com/?p=26lists several reasons this error may occur.
该进程是 64 位进程吗? http://winprogger.com/?p=26列出了可能发生此错误的几个原因。