gpt4 book ai didi

windows-services - 如何使用 WiX 安装和启动 Windows 服务

转载 作者:行者123 更新时间:2023-12-03 05:44:28 25 4
gpt4 key购买 nike

我尝试在 Wix 中使用下面的代码。

但是在安装时,安装程​​序在“正在启动服务”状态下卡住了大约 3 分钟,然后我收到此消息“Service Jobservice 无法启动。请验证您是否有足够的权限来启动系统服务”。我的代码有什么错误吗?能否要求用户在安装时输入windows系统用户名和密码来获得“权限”?

非常感谢!

    <File Id='JobServiceEXE' Name='JobService.exe' DiskId='1'
Source='JobService.exe' Vital='yes' KeyPath='yes'/>
<ServiceInstall Id="ServiceInstaller" Type="ownProcess" Vital="yes"
Name="JobService" DisplayName="123 Co. JobService"
Description="Monitoring and management Jobs" Start="auto"
Account="LocalSystem" ErrorControl="ignore" Interactive="no" />
<ServiceControl Id="StartService" Stop="both" Remove="uninstall"
Name="JobService" Wait="yes" />
</Component>

最佳答案

以下代码适用于我...不需要提示输入用户名/密码:)

    <File Id='JobServiceEXE' Name='JobService.exe' DiskId='1' Source='JobService.exe'  KeyPath='yes'/>         
<ServiceInstall
Id="ServiceInstaller"
Type="ownProcess"
Name="JobService"
DisplayName="123 Co. JobService"
Description="Monitoring and management Jobs"
Start="auto"
Account="[SERVICEACCOUNT]"
Password="[SERVICEPASSWORD]"
ErrorControl="normal"
/>
<ServiceControl Id="StartService" Start="install" Stop="both" Remove="uninstall" Name="JobService" Wait="yes" />
</Component>

关于windows-services - 如何使用 WiX 安装和启动 Windows 服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1942039/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com