Windows error 0x8007012B, -2147024597

Detailed Error Information

PARTIAL_COPY[1]

MessageOnly part of a ReadProcessMemory or WriteProcessMemory request was completed.
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode7 (0x007)
NameFACILITY_WIN32[2][1]
DescriptionThis region is reserved to map undecorated error codes into HRESULTs.[2][1]
Error Code299 (0x012b)

This is a Win32 error which has been mapped into an HRESULT. More information may be available in error 0x0000012b.

Questions

8votes
3answers

WinDbg : Hunting exceptions that have caused a .net service to crash

Have been having issues with an x64 dotnet service crashing intermittently on an application server. The service can run for hours, days, or weeks with no issue, but then fall over with not much info. The service is run in a cluster (3 x service each server) across two servers [...] read more
c#
.net
debugging
.net-4.0
windbg
4votes
2answers

Windows Error Reporting and IIS7 on Windows Server 2008

In a windows webservere I'm trying to get a memory dump of a failing IIS 7 worker process (w3wp.exe) with no avail. In the Event Viewer I get the following. Faulting application name: w3wp.exe, version: 7.5.7600.16385, time stamp: 0x4a5bd0eb Faulting module name: clr.dll, version: 4.0.30319.1, time stamp: 0x4ba21eeb Exception code: [...] read more
windows-server-2008
iis-7
windows
4votes
2answers

windbg dump command fails with error 0x8007012b

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: [...] read more
windows
windbg
minidump
3votes
0answers

Access Denied while trying to create mini-dump with WinDbg

I am trying to create a mini-dump using WinDbg. After attaching to the process (non-invasive), I execute the following command: .dump /mA c:\Temp\app.dmp This results in the following error: Creating c:\Temp\app.dmp - mini user dump WriteFullMemory.Memory.Read(0xe730000, 0x10000) failed 0x8007012b, skip. WriteFullMemory.QueryVirtual(0x0) for info failed, 0x80070005 Dump creation failed, Win32 error [...] read more
c#
debugging
windbg
dump
crash-dumps
2votes
1answer

C++ MiniDumpWriteDump failed

I am trying to create a simple C++ console app which dump the memory space of a given process (e.g. calc.exe) So I use MiniDumpWriteDump function Here is the code : DWORD procID = 1150; char* procName = "calc.exe"; // opens the dump file HANDLE hFile = CreateFile( "calc.dmp", GENERIC_READ [...] read more
c++
dump
2votes
2answers

Why is MiniDumpWriteDump failing?

I have created my own debugger application. It attaches to a process and creates a crash dump file. That works most of the time. The problem I have is that it will not work when the application being debugged is waiting for a mutex object (and this is the very [...] read more
debugging
minidumpwritedump
0votes
0answers

Windows 7 sysprep during deploying error

I have deployed a windows 7 syspreped image at several machines without any issue.However at a specific machine I am getting errors.The log is > 2015-11-05 15:46:56, Error [Shell Unattend] CopyProfileDirectory from > C:\Users\Administrator failed (0x8007012b) [gle=0x0000012b] 2015-11-05 > 15:46:56, Error > [Shell Unattend] _CopyToDefaultProfile failed (0x8007012b) [gle=0x0000012b] > 2015-11-05 [...] read more
windows-7
sysprep
0votes
1answer

How to list / check existance of Managed .NET DLL's in dllhost.exe

I have some components that I made available for COM+. In this case it will be loaded in dllhost.exe (COM Surrogate) when it is used. For maintenance reasons I want to create a .EXE file that stops all instances of the dllhost.exe to stop usage of the components. So I [...] read more
c#
.net
dll
0votes
0answers

IDebugControl WaitForEvent: Only part of a ReadProcessMemory or WriteProcessMemory request was completed

I created a process using: hr = pClient->CreateProcess(0,(char*)(sCommandLine.c_str()),DEBUG_PROCESS); // CComPtr pClient After setting breakpoints (no errors here), when I call: hr = pControl->SetExecutionStatus(DEBUG_STATUS_GO); // CComPtr pControl hr = pControl->WaitForEvent(DEBUG_WAIT_DEFAULT,INFINITE); I get the following error: hr 0x8007012b Only part of a ReadProcessMemory or WriteProcessMemory request was completed. HRESULT Both the target [...] read more
c++
windows
visual-studio-2010
debugging
com

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0