wix - InstallExecuteSequence 表中没有包含我的 CA 的行

发布于 2024-10-27 10:55:47 字数 700 浏览 2 评论 0原文

我有这样的代码

<Fragment>  
    <CustomAction Id="IsPrivileged" Error="You should be an adminuser" />  
    <InstallExecuteSequence>  
        <Custom Action="IsPrivileged" Before="LaunchConditions">Not AdminUser</Custom>  
    </InstallExecuteSequence>  
    <CustomAction Id="install_myfile" FileKey="id_myfile.exe" ExeCommand="/install" Return="check"/>  
    <InstallExecuteSequence>  
        <Custom Action="install_myfile" Sequence="5750"/>  
    </InstallExecuteSequence>  
</Fragment>

但安装程序忽略了这个片段。我用 Orca.exe 查看了 msi 数据库。我发现在 InstallExecuteSequence 表中没有包含此自定义操作的行。问题是什么?我应该将自定义操作绑定到对话框的控件吗?

i have code like this

<Fragment>  
    <CustomAction Id="IsPrivileged" Error="You should be an adminuser" />  
    <InstallExecuteSequence>  
        <Custom Action="IsPrivileged" Before="LaunchConditions">Not AdminUser</Custom>  
    </InstallExecuteSequence>  
    <CustomAction Id="install_myfile" FileKey="id_myfile.exe" ExeCommand="/install" Return="check"/>  
    <InstallExecuteSequence>  
        <Custom Action="install_myfile" Sequence="5750"/>  
    </InstallExecuteSequence>  
</Fragment>

But installer ignores this fragment. i looked the msi-database with Orca.exe. and i found that in InstallExecuteSequence Table there are no rows with this custom actions. what is the problem? should i bind my custom actions to dialog's controls?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

生生漫 2024-11-03 10:55:47

使用 CustomActionRef 将片段引用到您的产品中。

Use CustomActionRef to reference the Fragment into your Product.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文