12

LmHosts などに依存するように、WiX ServiceInstall 属性でサービスの依存関係を設定するにはどうすればよいですか

4

1 に答える 1

17
<ServiceInstall Id="ServiceNameId" Type="ownProcess" Name="ServiceName"
                DisplayName="Service Display Name"
                Description="Service Description" Start="auto" Account="LOCALSYSTEM"
                ErrorControl="normal">
      <ServiceDependency Id="LmHosts" />
</ServiceInstall>
于 2013-01-15T14:24:15.453 に答える