Windows error 0x80110474, -2146368396

Detailed Error Information

COMADMIN_E_REGDB_SYSTEMERR[1]

MessageThe COM+ registry database detected a system error
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode17 (0x011)
NameFACILITY_COMPLUS[2][1]
DescriptionThe source of the error code is COM+.[2][1]
Error Code1140 (0x0474)

Questions

1vote
2answers

CoCreateInstance - The COM+ registry database detected a system error

In a small test project I have this code: HRESULT hr = CoCreateInstance(CLSID_DOMDocument, NULL, CLSCTX_ALL, __uuidof( IXMLDOMDocument ), ( void ** ) & m_pDoc); if ( hr != S_OK ) { throw "MSXML DOM Document could not be created"; } This compiles and runs without problems. In another project the [...] read more
visual-studio-2010
visual-c++
com
com+

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