Windows error 0x80004015, -2147467243

Detailed Error Information

CO_E_WRONG_SERVER_IDENTITY[1]

MessageThe class is configured to run as a security id different from the caller
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode0 (0x000)
NameFACILITY_NULL[2][1]
DescriptionThe default facility code.[2][1]
Error Code16405 (0x4015)

Questions

0votes
2answers

Destroyed the Volume Shadow Copy Service for an Entire Domain

So I decided to add users to the Backup Operators group to all computers in the Domain by editing the default domain policy and adding a restricted group. I also set the Volume Shadow copy to start as part of the default domain policy as well. One of these two [...] read more
windows-server-2003
group-policy
vss
0votes
1answer

How to implement Chrome Metro mode?

I want implement like Chrome Metro mode in my desktop app. Please help me. class WRLAppViewSource : public mswr::RuntimeClass<winapp::Core::IFrameworkViewSource> { ... }; mswrw::RoInitializeWrapper roinit(RO_INIT_MULTITHREADED); HRESULT hr; mswr::ComPtr<winapp::Core::ICoreApplication> core_app; hr = CreateActivationFactory( RuntimeClass_Windows_ApplicationModel_Core_CoreApplication, core_app.GetAddressOf()); HSTRING id; hr = core_app->get_Id(&id); auto viewSource = mswr::Make<WRLAppViewSource>(); hr = core_app->Run(viewSource.Get()); > "hr = core_app->Run(viewSource.Get()); " [...] read more
google-chrome
windows-8
windows-runtime
microsoft-metro
0votes
1answer

How to fix COM outproc server initializing error 0x80004015?

I have a COM outproc server written in ATL that registers itself using _Module.RegisterClassObjects(CLSCTX_LOCAL_SERVER, REGCLS_SINGLEUSE) and it results in an HRESULT error code 0x80004015 (which means CO_E_WRONG_SERVER_IDENTITY). What causes this error code, and how can I work around this error? read more
com
atl

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