WiX ServiceInstall – 将服务设置为当前Windows用户运行

前端之家收集整理的这篇文章主要介绍了WiX ServiceInstall – 将服务设置为当前Windows用户运行前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用WiX安装 Windows服务.如何使服务在运行安装程序的Windows用户的上下文中运行?
您需要同时拥有要运行服务的用户的帐户名和密码.我可以通过在我的安装程序中添加一个自定义UI来完成此操作,要求输入用户名和密码,然后使用ServiceInsall元素上的Account和Password属性提供的值.

请注意,用于运行服务的帐户将需要具有“登录服务”权限.默认情况下不会授予用户.我可以使用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>
原文链接:https://www.f2er.com/windows/364028.html

猜你在找的Windows相关文章