3

My COM component implemented as surrogated dll. I create one by calling CoCreateInstanceEx(), but it started in shared dllhost.exe process. Is there a way to launch my COM component in separate dllhost process?

lambdas
  • 3,990
  • 2
  • 29
  • 54

1 Answers1

3

Surrogate sharing is documented here. Sharing only happens if the AppId matches. Give yours a unique one.

Hans Passant
  • 922,412
  • 146
  • 1,693
  • 2,536