Windows error 0x00002168, 8552

Detailed Error Information

DS_SOURCE_AUDITING_NOT_ENABLED[1]

MessageThe operation requires that source domain auditing be enabled.
Declared inwinerror.h

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

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 Code8552 (0x2168)

Questions

8votes
3answers

Android NDK produce unreasonable big binaries, how to optimize .so size?

I have notice that Android NDK (r6b in my case) produce unreasonable big resulting .so files. For example, in my case I have ~150-200 lines of C++ code (6 native methods and 3 C++ simplest classes) and this native code produce 60kb (!) .so with enabled exceptions and RTTI or [...] read more
android
android-ndk
0votes
2answers

Python just doesn't work at all

For some reason, Python 3.5 just crashes the second I open it up, displaying this: Fatal Python error: Py_initialize: unable to load the file system codec ImportError: No module named 'encodings' Current thread 0x00002168 (most recent call first): When I try to open IDLE, nothing happens. I have tried uninstalling [...] read more
python
crash
python-3.5
0votes
1answer

provide case- insensitive search of DB (core data)

I am a starter in iPhone. I wanted to do case-insensitive search. Database helper used: Core Data. Following is my code: -(WebAttendee *) FindAttendeeBy:(NSString *) badgeID_ { AppDelegate_Shared *delegate1 = [[UIApplication sharedApplication]delegate]; badgeID_=[badgeID_ stringByReplacingOccurrencesOfString:@"\\" withString:@"\\\\"]; badgeID_=[badgeID_ stringByReplacingOccurrencesOfString:@"'" withString:@"\\'"]; self.managedObjectContext = delegate1.managedObjectContext; return (WebAttendee *)[self FetchManagedObject:@"WebAttendee" :[NSString stringWithFormat:@ "Barcode LIKE [c] [...] read more
iphone
case-sensitive

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