English 中文(简体)
WiX v3.6 PermissionEx - Sdl Depende required?
原标题:WiX v3.6 PermissionEx - Sddl attribute required?
  • 时间:2012-04-19 06:23:26
  •  标签:
  • wix
  • wix3.6

真的?

我试图这样做——

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

————

缺少必要的Sdl。

不知道Sddl。 我怎样做一个Sdl的插手来与上述许可相匹配?

最佳回答

许可 职业妇女协会的主角 5.0 女士们 功能,需要SDDL插座。 在WixUtilExtension也设有一个排外标记,允许在MSI的所有版本上有类似的功能。 你用后者的属性重新使用前者。 如果你想要使用WixUtil Extension代号:

<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
...
<util:PermissionEx ... />
问题回答




相关问题
3rd party Wix libraries

I am just getting started with Wix. I see there there a several libraries included with the default Wix install. I also see that users can create their own libraries(wixlibs). Are there any 3rd ...

Psake, Powershell & Wix

I have the below function as a part of my psake build. When the build is executing Candle.exe throws this error: candle.exe : warning CNDL1098: ext .BuildPackagesWixWebinWixIIsExtension.dll ...

wix custom dialog for config edit

hi i m trying make a setup msi for my application with wix v3 I have a problem about this task; I need a user input that will be stored in my application s config file (for example i need a dialog for ...

Closing an application using WiX

In creating my WiX installer I have run into an issue when trying to close an application before installing the upgrade. Below is an example of how I am attempting to do this. <util:...

Conditional uninstall of previous version in Wix

I m doing an installer for an software used for debugging embedded ARM cores (OpenOCD) and this installer automatically removes the previous versions - that s simple. However, sometimes that would be ...

热门标签