Wix - ¿Cómo instalar múltiples servicios de Windows con un ejecutable?

Estoy intentando instalar múltiples servicios de Windows con el mismo ejecutable, pero a WiX no le gustan los mismos atributos de nombre en las dos etiquetas de archivo. He intentado cambiar los nombres de las dos etiquetas de archivo. Funciona, pero espero no tener que instalar dos del mismo ejecutable solo para ese propósito. ¿Hay una mejor manera de hacer esto? Aquí está mi código hasta ahora:

<Component Id="Service1" Guid="{SOMEGUID1}">
  <File Id='Service1' Name='ConnDriver.exe' DiskId='1' Source='..\Service\obj\x86\$(var.BUILD)\ConnDriver.exe'  KeyPath='yes'/>
    <ServiceInstall
      Id="ServiceInstaller1"
      Type="ownProcess"
      Name="MyService1"
      DisplayName="MyService1"
      Description="Some Description"
      Start="auto" 
      Account="[SERVICEACCOUNT]"
      Password="[SERVICEPASSWORD]"
      ErrorControl="normal"
      Arguments=' "Service1"'
      Vital="yes"
      Interactive="no" />
    <ServiceControl Id="ServiceControl1" Stop="uninstall" Remove="uninstall" Name="MyService1" Wait="yes" />
</Component>

<Component Id="Service2" Guid="{SOMEGUID2}">
  <File Id='Service2' Name='ConnDriver.exe' DiskId='1' Source='..\Service\obj\x86\$(var.BUILD)\ConnDriver.exe'  KeyPath='yes'/>
    <ServiceInstall
      Id="ServiceInstaller2"
      Type="ownProcess"
      Name="MyService2"
      DisplayName="MyService2"
      Description="Some Description"
      Start="auto" 
      Account="[SERVICEACCOUNT]"
      Password="[SERVICEPASSWORD]"
      ErrorControl="normal"
      Arguments=' "Service2"'
      Vital="yes"
      Interactive="no" />
    <ServiceControl Id="ServiceControl2" Stop="uninstall" Remove="uninstall" Name="MyService2" Wait="yes" />
</Component>

In características:

<Feature Id="Feature1" Title="Feature 2" Level="1" Description="...">
  <ComponentRef Id="Service1_xml"/>
  <ComponentRef Id="Service1"/>
</Feature>
<Feature Id="Feature2" Title="Feature 2" Level="1" Description="...">
  <ComponentRef Id="Service2_xml"/>
  <ComponentRef Id="Service2"/>
</Feature>

Cualquier ayuda es apreciada.

(PS. La razón por la que los dividí en 2 componentes es para poder incluir un archivo de configuración xml con el servicio en la sección de características. Mi instalador del servicio de Windows toma un argumento de línea de comando para saber de qué archivo xml leer y configurar en consecuencia)

EDITAR

Salida de error:

ICE30: El archivo de destino 'hlo8twix.exe | ConnDriver.exe' se instala en '[ProgramFilesFolder] \ CompanyName \ ProgramName \' por dos componentes diferentes en un sistema LFN: 'Service1' y 'Service2'. Esto interrumpe el recuento de referencias de componentes.

Respuestas a la pregunta(8)

Su respuesta a la pregunta