这个问题在这里已有答案:
- wix服务依赖项 1个答案
9871
2018-01-15 14:24
起源
答案:
<ServiceInstall Id="ServiceNameId" Type="ownProcess" Name="ServiceName"
DisplayName="Service Display Name"
Description="Service Description" Start="auto" Account="LOCALSYSTEM"
ErrorControl="normal">
<ServiceDependency Id="LmHosts" />
</ServiceInstall>
15
2018-01-15 14:24
马上上班了,谢谢! - RikSaunderson
答案:
<ServiceInstall Id="ServiceNameId" Type="ownProcess" Name="ServiceName"
DisplayName="Service Display Name"
Description="Service Description" Start="auto" Account="LOCALSYSTEM"
ErrorControl="normal">
<ServiceDependency Id="LmHosts" />
</ServiceInstall>
15
2018-01-15 14:24
马上上班了,谢谢! - RikSaunderson