Visual Studio 2008 MSI 修改
我正在尝试使用 Visual Studio 2008 修改 MSI。我也有带有代码的项目。安装有一个弹出窗口,要求提供一些信息,但我无法在 msiexec 命令中设置任何属性来设置它。我以前从未这样做过,也找不到任何帮助,但我基本上想创建一个可以分配给该弹出窗口的属性。在 Visual Studio 中查看该项目,我在 MSI 安装中没有看到任何对 Windows 的引用,因此不确定如何执行此操作。
任何帮助将不胜感激。
谢谢
I'm trying to modify an MSI using Visual Studio 2008. I have the Project with the code as well. The install has a pop-up where it request for some information but there are no properties I can set in the msiexec command to set it. I have never done this before and can't really find any help but I basically want to create a property that can be assigned for that pop-up window. Looking at the project in Visual Studio I don't see any reference to the windows in the MSI installation so not sure how to do this.
Any help would be appreciated.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议使用 WiX 并使用 Dark 将现有的 MSI 反编译为 WiX 脚本。然后您可以参考 学习如何操作的好资源从 WiX 创建 MSI 安装程序了解更多信息。 Visual Studio 安装项目目前已被弃用,因此将其迁移到 WiX 将值得您花时间。
I'd suggest grabbing WiX and using Dark to decompile your existing MSI into a WiX script. Then you can refer to Good resources for learning how to create MSI installers from WiX for more info. Visual Studio setup projects are deprecated at this point, so migrating this to WiX will be worth your time.