WiX ServiceInstall服务依赖关系

前端之家收集整理的这篇文章主要介绍了WiX ServiceInstall服务依赖关系前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > wix service dependencies1
如何在WiX ServiceInstall属性中设置服务的依赖关系取决于例如LmHosts
<ServiceInstall Id="ServiceNameId" Type="ownProcess" Name="ServiceName"
                DisplayName="Service Display Name"
                Description="Service Description" Start="auto" Account="LOCALSYSTEM"
                ErrorControl="normal">
      <ServiceDependency Id="LmHosts" />
</ServiceInstall>
原文链接:https://www.f2er.com/javaschema/281400.html

猜你在找的设计模式相关文章