I have some troubles with WIX Services. My msi installer can create Service, but after creation installer can't start it. There is my code, which I use for Service.
<Component Id="borland_comp" Guid="{6F723B32-E95A-4545-87FD-0B5F7B114FCA}" DiskId="1">
<File Id="server_ScktSrvr.exe" Name="ScktSrvr.exe" KeyPath="yes"/>
<ServiceInstall Id="BORLAND_Socket"
Name="Borland Socket Server"
DisplayName="Borland Socket Server"
Type="shareProcess"
Start="auto"
ErrorControl="normal"
Description="Borland Socket Server" />
<ServiceControl Id="StartWixServiceInstaller"
Name="Borland Socket Server" Start="install" Wait="no" />
<ServiceControl Id="StopWixServiceInstaller" Name="Borland Socket Server"
Stop="both" Wait="yes" Remove="uninstall"/>
</Component>