一直在尝试为我的最新项目创建一个WiX安装程序。我有一个奇怪的问题,如果我通过cmd提示运行msi作为管理员它工作正常,自定义操作开始没有大惊小怪一切正常,但如果我双击msi自定义操作不起作用和安装程序失败。我正在使用Visual Studio 2012并使用Windows 7.
<!--Custom Actions-->
<Binary Id='customShortcut' SourceFile='$(var.CustomDir)\TestInstallerCustom.CA.dll'/>
<Binary Id='customDir' SourceFile='$(var.CustomDir)\TestInstallerCustom.CA.dll'/>
<Binary Id='removeDir' SourceFile='$(var.CustomDir)\TestInstallerCustom.CA.dll'/>
<CustomAction Id='customShortcutId' BinaryKey='customShortcut' DllEntry='CustomShortcut'
Execute='immediate' Impersonate='no' Return='check' />
<CustomAction Id='customDirId' BinaryKey='customDir' DllEntry='CustomDir'
Execute='immediate' Impersonate='no' Return='check'/>
<CustomAction Id='removeDirId' BinaryKey='removeDir' DllEntry='RemoveDir'
Execute='immediate' Impersonate='no' Return='check'/>
<InstallExecuteSequence>
<Custom Action='customDirId' Before='InstallFinalize'/>
<Custom Action='customShortcutId' After='InstallFinalize'/>
<Custom Action="removeDirId" After="InstallValidate">REMOVE="ALL"</Custom>
</InstallExecuteSequence>
答案 0 :(得分:3)
安装的提升部分不会执行'immediate'
个自定义操作。因此它们只是在安装过程中升高运行(如您所见)。要提升自定义操作,它们必须是事务脚本的一部分。为此,请设置CustomAction
元素Execute='deferred'
属性。
注意:延迟的自定义操作具有MSI SDK中记录的其他限制:'Deferred Execution Custom Actions' topic。由于看起来自定义操作正在修改计算机状态,因此您还需要考虑添加回滚自定义操作以撤消延迟自定义操作所做的更改。
很好地编写自定义操作非常具有挑战性。这是自定义操作是导致安装失败的最大因素的部分原因。如果您可以避免编写自定义操作,我强烈建议您这样做。 :)