[WiX-users] Installing multiple windows services with single exe

2008-07-30 Thread MarkZune
I'm creating a WIX setup for a .net c# solution that has a project which creates a single EXE for two services and would like to know if it's possible to install the services using this single EXE through WIX. I have an MSI that was already created for this solution so I decompiled it using dark

Re: [WiX-users] Installing multiple windows services with single exe

2008-07-30 Thread Christopher Karper
Other installers won't use the same CustomAction to install the service. I know the ones emitted by the VS deployments use InstallUtil to self register. You'll need to kind of translate the decompiled .wxs into Wix speak. And I wouldn't see why you'd need two different files for the deployment

Re: [WiX-users] Installing multiple windows services with single exe

2008-07-30 Thread MarkZune
Other installers won't use the same CustomAction to install the service. I know the ones emitted by the VS deployments use InstallUtil to self register. You'll need to kind of translate the decompiled .wxs into Wix speak. Translating was what I was hoping to do, but I'm new to WIX (and

Re: [WiX-users] Installing multiple windows services with single exe

2008-07-30 Thread Christopher Karper
InstallUtil is a DLL that uses the installer classes compiled into your managed service. So, none of the service deployment information is going to be in the file generated by dark. You will have to look up the ServiceInstall element, and enter the same information you have in the self

Re: [WiX-users] Installing multiple windows services with single exe

2008-07-30 Thread MarkZune
That was my initial thought as well. Unfortunately that doesn't seem to work. As you said, it compiles fine, but I get an error that the service wasn't installed correctly when running the install. Christopher Karper wrote: InstallUtil is a DLL that uses the installer classes compiled into

Re: [WiX-users] Installing multiple windows services with single exe

2008-07-30 Thread Chad Petersen
a real idea of what is stopping it from working in all cases. Might help?? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of MarkZune Sent: Wednesday, July 30, 2008 1:36 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Installing multiple