将INF(安装说明)转换为EXE安装程序

发布于 2024-10-15 21:31:26 字数 120 浏览 2 评论 0原文

我有一个 INF 文件,我必须右键单击其中才能安装文件 - 所以我想将其转换为具有进度条的 EXE 安装程序!所以我只需要一个 EXE 文件中的所有文件,这样当我双击它时,安装就会开始......

问候, 网民

I have an INF file in which I have to right click to install the files - So I wanted to convert it into a EXE Installer which has a Progress Bar !!! So I just need all the files in ONE EXE file so when I double click it the installation starts ...

Regards,
Netguy

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

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

发布评论

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

评论(1

还如梦归 2024-10-22 21:31:26

您可以执行以下操作:

首先,使用以下命令

rundll32 syssetup,SetupInfObjectInstallAction DefaultInstall 128 .\inffile.inf

为每个 .inf 文件创建一个 .bat 文件。此命令将安装您的文件。

然后,启动iexpress,该程序是随windows提供的。按照向导操作。当要求添加文件时,添加所有 .inf 文件和 .bat 文件。当询问安装脚本时,选择 .bat 文件。

应该可以做到这一点。

问候,
帕特里克

Here is what you can do:

First, create a .bat file with the following command:

rundll32 syssetup,SetupInfObjectInstallAction DefaultInstall 128 .\inffile.inf

for each .inf file. This command will install your file.

Then, start iexpress, this program is provided with windows. Follow the wizard. When asked to add files, add all your .inf files and the .bat file. When asked for the install script, select the .bat file.

That should do it.

Regards,
Patrik

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