Windows error 0x00000511, 1297

Detailed Error Information

INCOMPATIBLE_SERVICE_PRIVILEGE[1]

MessageYou may use the Services Microsoft Management Console (MMC) snap-in (services.msc) and the Local Security Settings MMC snap-in (secpol.msc) to view the service configuration and the account configuration.
Declared inwinerror.h

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

HRESULT analysis[2]

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[2][1]
DescriptionThe default facility code.[2][1]
Error Code1297 (0x0511)

Questions

0votes
0answers

Cannot access memory at break point address in GDB

I've already set breakpoint at address 0x000004ed. But why can't I access it even after the code has been ran? (gdb) disassemble main Dump of assembler code for function main: 0x000004ed <+0>: push ebp 0x000004ee <+1>: mov ebp,esp 0x000004f0 <+3>: sub esp,0x10 0x000004f3 <+6>: call 0x512 <__x86.get_pc_thunk.ax> 0x000004f8 <+11>: add [...] read more
c
memory
gdb

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