views:

287

answers:

1

Some time ago I found aout about the System.Directory namespace in .NET 3.5 that enables me to basically manage local as well as domain accounts easily with native .NET methods instead of using API calls and importing unmanaged DLLs.

Now I need to configure DCOM settings for some legacy application from within an MSI setup. As far as I know there is no way doing it with on board means of InstallShield 2009.

Is there any way of configuring DCOM settings with .NET so that I would be able to write a managed Custom Action e.g.?

A: 

As far as I know - not in .NET see http://stackoverflow.com/questions/454368/dcomcnfg-functionality-programmatically#455903

Dror