设置向导无声争论

发布于 2024-12-05 06:15:40 字数 243 浏览 0 评论 0原文

我有一个包含安装项目的解决方案(使用 VS2008 安装向导制作)。我需要选择静默安装安装项目。我读到,为了做到这一点,我应该删除用户界面屏幕。但这将使我的安装项目变得安静。我需要它可以正常使用(非静默),并且当使用特定参数调用时保持静默。

所以我的两个问题:

  • 如何将参数传递给安装项目?
  • 当不带参数调用项目时,如何创建静默安装过程,同时保持正常设置?

如果网上有资源,请指点我。

I have a solution that contains a setup project(made with VS2008 setup wizard). I need to have the option to silently install the setup project. I read that in order to do this, I should delete the User Interface screens. But this will make my setup project ONLY silent. I need it to be available to be used normally (non-silent), and when called with a specific argument, to be silent.

So my 2 questions:

  • How can I pass arguments to the setup project?
  • How can I create a silent install procedure, while also keeping the normal setup, when the project is called with no argument?

If there are resources on the web, please point me to them.

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

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

发布评论

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

评论(1

月亮是我掰弯的 2024-12-12 06:15:40

安装 exe 通常可以使用以下命令在静默模式下运行:

setup.exe /q

MSI 可以使用以下命令在静默模式下运行:

msiexec /qn /i setup.msi

Setup exe can usually be run in silent mode using:

setup.exe /q

MSI can be run in silent mode using:

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