MSI 中的 CAB 文件安装

发布于 2024-11-19 06:13:41 字数 166 浏览 3 评论 0原文

我有一个 CAB 文件,它将在 IE 中进行一些注册,我需要制作一个 MSI 文件,该文件将首先下载,然后在安装时应该安装 CAB 文件

我在安装时也有一些操作,所以我覆盖安装方法与其他步骤,但对于 CAB,我不知道是否应该使用 Process 和 CMD 安装它,或者有一个内置的方法可以做到这一点!

I have a CAB file which will do some registration within the IE,I need to make an MSI file that will be downloaded first then while installing it it should install the CAB file

I also have some actions while installing so I do override to install method with the other steps but with CAB I don't know I if I should install it using Process and CMD or there's a builtin way to do this !!

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

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

发布评论

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

评论(1

恰似旧人归 2024-11-26 06:13:41

MSI 包使用自己的 CAB,并通过 MSI 数据库中存储的信息链接到它们。因此 MSI 无法直接安装您的自定义 CAB。

解决方案是将自定义 CAB 插入 二进制 表。然后,自定义操作可以提取它并按照您想要的方式注册它。

为了从二进制表中提取,自定义操作需要安装句柄。所以你需要一个 win32 DLL 或 VBScript。您不能使用安装程序类。

您可以在这里找到 C++ DLL 自定义操作教程:
http://www.codeproject.com/KB/install/msicustomaction.aspx

MSI packages use their own CABs and are linked to them through the information stored in MSI database. So a MSI cannot install your custom CAB directly.

A solution is to insert your custom CAB in Binary table. A custom action can then extract it and register it the way you want.

For extracting from Binary table a custom action needs the installation handle. So you need a win32 DLL or VBScript. You cannot use an installer class.

You can find a C++ DLL custom action tutorial here:
http://www.codeproject.com/KB/install/msicustomaction.aspx

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