Launching COM (.NET) Object with Elevated Rights throws FileNotFoundException

250 Views Asked by At

I am trying to launch a .NET object through the CoGetObject method as outlined in the COM Elevation Moniker article on MSDN. I started working with the Vista Bridge code and then stumbled across an older sample that shows some of the bits wired up. At this point I am trying to figure out why I am getting a FileNotFoundException thrown when the call goes through to this method:

var result = UnsafeNativeMethods.CoGetObject(monikerName, ref bindingOptions, interfaceId);

The exception only throws after the consent prompt is displayed which is strange. I am working on a Windows 7 x64 machine if that helps and have posted the full source of my spike.

What am I missing here that might cause a FileNotFoundException to be thrown?

2

There are 2 best solutions below

0
On

This is not directly an answer, but you can probably use the RunElevatedNet C# sample project to try launching your COM server in either a elevated project or not. Investigating if the same FileNotFoundException error also occur in non-elevated mode might help debug your issue.

2
On

Did you run RegAsm.exe with the /tlb switch to export and register a typelib for the COM server? Not having a registered typelib may result in a FileNotFoundException.