WiX - Trying to set the permissions of a service using util:PermissionEx and getting an Error 1

懵懂的女人 提交于 2019-12-13 12:53:23

问题


The question WiX - Install Windows Service and give permissions is exactly what I am trying to do. First I have added the UtilExtension namespace like this:

<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
     xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">

Then I have added the following to the ServiceInstall element:

<util:PermissionEx
              User="Authenticated Users"
              GenericAll="yes"
              ServiceChangeConfig="yes"
              ServiceEnumerateDependents="yes"
              ChangePermission="yes"
              ServiceInterrogate="yes"
              ServicePauseContinue="yes"
              ServiceQueryConfig="yes"
              ServiceQueryStatus="yes"
              ServiceStart="yes"
              ServiceStop="yes" />

Finally the compiler provides me with the following error message:

Error 1 The ServiceInstall element contains an unhandled extension element 'util:PermissionEx'. Please ensure that the extension for elements in the 'http://schemas.microsoft.com/wix/UtilExtension' namespace has been provided.

Is there something else I need to do to ensure the extension for the elements has been provided? How do I fix this?


回答1:


You need to add the reference to the WiX Util extension dll to your project.

  1. Under your project, right-click References
  2. Select Add Reference
  3. Choose the WixUtilExtension.dll and select Add



回答2:


If you're still seeing the squiggle line:

Add the xmlns:util:

xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">


来源:https://stackoverflow.com/questions/10222026/wix-trying-to-set-the-permissions-of-a-service-using-utilpermissionex-and-get

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!