如何创建可通过 AD 组策略进行无人值守安装的 Visual Studio 安装项目 MSI?
如果我想通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我发现可以使用名为“TARGETDIR”的自定义属性来指定安装路径。无人值守安装可以通过以下方式进行测试:
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:
有一个命令 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.