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?

link|improve this question

Out of disk space? – Shog9 May 9 '09 at 3:01
I asked him and his response was: "no errors in system events. a lot of free space on C:. no errors on C:." – sean e May 9 '09 at 3:06
feedback

2 Answers

up vote 2 down vote accepted

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

link|improve this answer
This worked - produced a 450MB dump. Haven't seen it yet. – sean e May 11 '09 at 18:40
feedback

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.

link|improve this answer
It's a 32 bit process but note that the windbg version reports "AMD64" - so I think you're on to something. – sean e May 9 '09 at 4:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.