您需要同时拥有要运行服务的用户的帐户名和密码.我可以通过在我的安装程序中添加一个自定义UI来完成此操作,要求输入用户名和密码,然后使用ServiceInsall元素上的Account和Password属性提供的值.
原文链接:https://www.f2er.com/windows/364028.html请注意,用于运行服务的帐户将需要具有“登录服务”权限.默认情况下不会授予用户.我可以使用UtilExtension模式的User元素将该priveledge添加到用户.如果运行安装程序的用户是管理员,则向用户添加特权只能成功.
这是我使用的代码. SERVICECREDENTIALS_USERLOGIN和SERVICECREDENTIALS_PASSWORD是从自定义UI填充的属性.
<Component Id="ServiceEXE" Guid="xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"> <File Id="ServiceEXE" Name="YourService.exe" DiskId="1" Source="path\to\YourService.exe" KeyPath="yes" /> <util:User Id="UpdateUserlogonAsService" UpdateIfExists="yes" CreateUser="no" Name="[SERVICECREDENTIALS_USERLOGIN]" logonAsService="yes" /> <ServiceInstall Id="ServiceInstall" Type="ownProcess" Vital="yes" Name="YourService" DisplayName="Your Service" Description="Your Service description" Start="auto" Account="[SERVICECREDENTIALS_USERLOGIN]" Password="[SERVICECREDENTIALS_PASSWORD]" ErrorControl="normal" Interactive="no" /> <ServiceControl Id="StartService" Start="install" Stop="both" Remove="uninstall" Name="YourService" Wait="yes" /> </Component>