Hi,

 

I have a Win32 service that should be installed with my MSI.  The typical WIX entry for a service would look something like:

 

<Component Id='MyDemoComponents' Guid='11111111-1111-1111-1111-111111111111'>

    <File Id="MyServiceDll" Name='MySvcDll.dll' LongName='MyService.dll' DiskId='1' src='' Vital='yes'/>

    <ServiceInstall Id="MyServiceInstall"

                    Name="MyService"

                    DisplayName="My Service Name"

                    Description="My Service Description"

                    Type="ownProcess"

                    Interactive="no"

                    Start="auto"

                    Vital="yes"

                    ErrorControl="normal">

    </ServiceInstall>

</Component>

 

However, this produces an ImagePath service entry that references MyService.Dll, whereas I need to specify something like “%SystemRoot%\system32\svchost.exe -k MySvcHostGroup”.

 

Cheers,

-Byron.

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to