修补使用 Visual Studio 2005 安装项目 .vdproj 创建的 MSI
各位,
修补 VS 2005 使用安装项目创建的 MSI 文件的过程应该是什么?
我需要创建一个仅替换几个文件的 MSP 文件;这可以通过 VS 或任何其他工具实现吗?
Folks,
What should be the process of patching an MSI file that was created by VS 2005 using the setup projects ?
I need to create an MSP file that will replace a few files only; is this doable via VS or any other tools ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用带有 ProgId 的 COM 对象来修改 MSI 文件WindowsInstaller.Installer。通过 JavaScript、C++、C# 或任何您喜欢的语言可以很容易地做到这一点。
我不知道什么是MSP。 此答案显示了一个可就地修改 MSI 文件的 Javascript 程序。
You can modify MSI files by using the COM object with the ProgId WindowsInstaller.Installer. It's pretty easy to do via JavaScript, or C++, or C#, or whatever language you like.
I don't know what an MSP is. This answer shows a a Javascript program that modifies an MSI file in place.