Windows error 0x00002030, 8240

Detailed Error Information

DS_NO_SUCH_OBJECT[1]

MessageThere is no such object on the server.
Declared inwinerror.h

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

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 Code8240 (0x2030)

Questions

5votes
1answer

What does mc_mobile_tunnel represent in a crash log?

A coworker handed me an iPhone that crashed in the middle of our app running. The crash report credits the crash to mc_mobile_tunnel rather than our application. Process: mc_mobile_tunnel [7322] Path: /usr/libexec/mc_mobile_tunnel Identifier: mc_mobile_tunnel Version: ??? (???) Code Type: ARM (Native) Parent Process: launchd [1] Date/Time: 2011-03-24 13:53:15.294 -0700 OS [...] read more
iphone
ios
crash-reports
2votes
2answers

How to store a UTF-16 character as a string in c#?

How can I print a character whose UTF-16 representation is feff2031? When I try the following I get "?" as the result: String million = "\u2030"; The character I want is "per million". See PER MILLE for more information. UTF-8 (hex) 0xE2 0x80 0xB0 (e280b0) UTF-8 (binary) 11100010:10000000:10110000 UTF-16 (hex) [...] read more
c#
utf
1vote
1answer

Linux: Display output only goes to one graphics card after it starts udev

I've got two graphics cards in a system, both of which have all of the monitors enabled up until it gets to :: Starting udevd... done. in the boot process. After it gets past there, the 2 monitors attached to the primary graphics card continue updating, while the monitor attached [...] read more
linux
arch-linux
amd-radeon
graphics
nvidia-quadro
0votes
1answer

Code no longer works after going from Python 2.7 to 3.3

I started using Python 3.3 instead of 2.7 and there is a problem with some lines of code that I use to restart or close the program. def restart_program(): python = sys.executable os.execl(python, python, * sys.argv) if __name__ == "__main__": answer = input("Restart or close program ") if answer.strip() in [...] read more
python

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