Jeremy Lew wrote: > My installer is installing a .NET service using ServiceInstall. The > ServiceInstall is failing to start the service, I'm pretty sure because > of a dependency on the C runtime library.
If your service is installed into the GAC, you'll also run into this problem. Assemblies (managed or native, like the CRT native assemblies) are committed during InstallFinalize, which is too late to start services. A custom action is your only option here, assuming it can start the service as a limited user. (After InstallFinalize, CAs can't run with elevated privileges.) -- sig://boB http://joyofsetup.com/ ------------------------------------------------------------------------------ _______________________________________________ WiX-users mailing list WiX-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wix-users