Windows error 0x0000012B, 299

Detailed Error Information

PARTIAL_COPY[1]

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

This appears to be a raw Win32 error. More information may be available in error 0x8007012B.

FAULTY_HARDWARE_CORRUPTED_PAGE[2]

This is a Blue Screen of Death stop code. More information is available in the Knowledge Base article Bug Check 0x12B: FAULTY_HARDWARE_CORRUPTED_PAGE.

HRESULT analysis[3]

This is probably not the correct interpretation of this error. The Win32 error above is more likely to indicate the actual problem.
FlagsSeveritySuccess

This code indicates success, rather than an error. This may not be the correct interpretation of this code, or possibly the program is handling errors incorrectly.

Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode0 (0x000)
NameFACILITY_NULL[3][1]
DescriptionThe default facility code.[3][1]
Error Code299 (0x012b)

Questions

2votes
1answer

C# Search Byte Array inside Process Memory

I'm developing a little memory scanner for a specific application. When I select a process to scan, the first thing I want to do is to verify that the process is an instance that specific application... and to do this I must find a signature that can be anywhere inside [...] read more
c#
.net
pinvoke
readprocessmemory
2votes
2answers

Failed to create assembly 'System.ServiceModel.Internals' in SQL

I am trying to create an assembly in SQL but I am not able to load the following DLL. System.ServiceModel.Internals create assembly [system.servicemodel.internals] from 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\System.ServiceModel.Internals.dll' with permission_set = safe; go I get this error: > Msg 6218, Level 16, State 2, Line 2 CREATE ASSEMBLY for assembly > 'System.ServiceModel.Internals' failed [...] read more
c#
clr
.net-assembly
sqlclr
1vote
1answer

Hex vs. decimal representation of numbers in registers and operands

I have had trouble with conceptually understanding assembly language. And I would like to clarify if I am on the right track. For example, lets say the register eax contains the hex value 0x000000FF and the instruction is add eax, 44d. All I essentially would be doing is adding 44 [...] read more
assembly
x86
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

Read process information. Win32Exception ERROR_PARTIAL_COPY

I want to get the process id of Microsoft Movies & TV (Video.UI.exe). When I loop through all the processes to check if the file name contains Video.UI.exe I get a lot of Win32Exceptions which I expected. I thought so. I only expected NativeErrorCode 0x00000005 'Access denied' because I'm not [...] read more
c#
process
win32exception

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/bug-check-code-reference2
  3. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0