静默运行 MSI 安装程序

发布于 2024-10-11 02:09:28 字数 331 浏览 7 评论 0原文

我有 3 个文件 -

  1. Alky for Applications.msi(使 Vista 应用程序在 XP 上运行)
  2. Windows VIsta sidebar.exe(使 VIsta 侧边栏在 XP 上运行)
    3.Gadget Extractor.msi(第 2 号的一部分)

我只想通过安装一个来安装所有设置。我的一位朋友告诉我,MSI 软件包可以使用 /qb 开关静默安装 我在那里得到的 .exe 是 NSIS 安装程序,可以使用 /S 开关静默安装。

所以我在软件开发方面完全n00b,所以请建议我该怎么做

I am having 3 files -

  1. Alky for Applications.msi ( which make Vista Apps work on XP)
  2. Windows VIsta sidebar.exe ( Which make that VIsta sidebar work on XP)
    3.Gadget Extractor.msi ( A part of number 2)

I just want to have all the setups installed by just instlaling one. One of my freind told me that the MSI packages may be silently installed using /qb switch
the .exe I got there is NSIS setup which may be silently installed using /S switch.

SO I am a total n00b in software developing ,so pls suggest me what to do

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

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

发布评论

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

评论(1

生生不灭 2024-10-18 02:09:28

最简单的解决方案是创建一个批处理文件并将这些命令放入其中以启动安装程序:

msiexec /i "C:\Users\ZippyV\Desktop\Alky for Applications.msi" /quiet
"C:\Users\ZippyV\Desktop\Windows VIsta sidebar.exe" /s
msiexec /i "C:\Users\ZippyV\Desktop\Gadget Extractor.msi" /quiet

将批处理文件的扩展名更改为 .cmd 并将所有文件放在同一目录中。

编辑:确保指定安装程序的完整路径并在它们周围使用引号。要运行该文件,只需单击它即可。

The simplest solution is to create a batch file and put these commands in it to launch the installers:

msiexec /i "C:\Users\ZippyV\Desktop\Alky for Applications.msi" /quiet
"C:\Users\ZippyV\Desktop\Windows VIsta sidebar.exe" /s
msiexec /i "C:\Users\ZippyV\Desktop\Gadget Extractor.msi" /quiet

Change the extension of the batch file to .cmd and put all the files in the same directory.

EDIT: make sure to specify the full path to your installers and use quotes around them. To run the file, just click it.

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