如何创建可通过 AD 组策略进行无人值守安装的 Visual Studio 安装项目 MSI?

发布于 2024-08-14 11:39:36 字数 150 浏览 4 评论 0原文

如果我想通过 Active Directory 组策略安装由 Visual Studio 2005 创建的 MSI:

安装项目必须满足哪些要求? 如何指定安装路径?这是组策略设置的一部分吗?或者我是否必须创建一个特殊的“静默安装”版本的 MSI?

谢谢!

if i want to install a MSI, created by Visual Studio 2005, via Active Directory Group Policy:

What requirements must be met by the Setup Project?
How can I specify the installation path? Is this a part of the Group Policy setting? Or do I have to create a special "silent install" version of the MSI?

Thanks!

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

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

发布评论

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

评论(2

怀里藏娇 2024-08-21 11:39:36

我发现可以使用名为“TARGETDIR”的自定义属性来指定安装路径。无人值守安装可以通过以下方式进行测试:

setup.msi /passive TARGETDIR="C:\whatever"

I found out that it is possible to specify the installation path with a custom property called "TARGETDIR". The unattended installation can be tested with:

setup.msi /passive TARGETDIR="C:\whatever"
百变从容 2024-08-21 11:39:36

有一个命令 MSIExec 可以自动安装 MSI 安装程序。该命令是您将与策略一起使用的命令。任何 MSI 都应该与其兼容。

您有多种选项可以使用 Microsoft 的默认安装项目或更详细的项目(例如 Wix)来构建安装程序。

There is a command MSIExec that installs MSI installers automatically. This command is what you would use with the Policy. Any MSI should be compatible with it.

You have a number of options for building installers going with Microsofts default setup projects or something more verbose like Wix.

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