Retrieving com class factory for component with clsid {000209FF-0000-0000-C000-000000000046} is failed due to the following error:80080005
retrieving com class factory for component with clsid {000209FF-0000-0000-C000-000000
Collapse
X
-
Tags: None
-
I had the same problem running C# code with reference to a COM dll.
Changing platform from AnyCPU to x86 didn't help.
Changing the reference property "Isolated" to True inside the C# project, solved the problem.
Also, all the files created by compilation should be copied together with exe:
*.exe.manifest
*.pdb
*.dll
Interop.*.dll
Comment