Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does COM Error 80010105 mean and where to find other codes?

Tags:

com

Is there a list of COM error codes somewhere?

Related: HRESULT: 0x80010105 (RPC_E_SERVERFAULT) question

like image 729
Egor Pavlikhin Avatar asked Apr 18 '10 23:04

Egor Pavlikhin


People also ask

How do you fix 0x80010105?

If you are receiving the error 0x80010105 while adding the printer to your Windows 11/10 device, disable your security software temporarily and then try again. If your security software was causing the problem, you should be able to add the printer after disabling it. Don't forget to enable the security software again.

What is Rpc_e_serverfault?

RPC_E_SERVERFAULT means that the out-of-process COM server threw a structured (Win32)exception, which could be all sorts of things, such as an Access Violation, Divide by Zero, etc.


1 Answers

From Standard COM Errors (at least for Microsoft Commerce Server):

The following table shows the most common standard COM errors returned by the properties and methods of the Commerce Server objects:

Constant    Value (32-bit)  Description
S_OK            00000000    The standard return value used to communicate successful completion.
S_FALSE         00000001    An alternate success value, typically used to communicate successful, but non-standard completion. The precise meaning depends on the method or property in question.
E_UNEXPECTED    8000FFFF    Catastrophic failure error.
E_NOTIMPL       80004001    Not implemented error.
E_OUTOFMEMORY   8007000E    Out of memory error.
E_INVALIDARG    80070057    One or more arguments are not valid error.
E_NOINTERFACE   80004002    Interface not supported error.
E_POINTER       80004003    Pointer not valid error.
E_HANDLE        80070006    Handle not valid error.
E_ABORT         80004004    Operation aborted error.
E_FAIL          80004005    Unspecified error.
E_ACCESSDENIED  80070005    General access denied error.

Com Errors Search Engine

like image 146
Orhan Cinar Avatar answered Nov 03 '22 01:11

Orhan Cinar