在ORCA工具中如何将“设置项目的自定义操作”带入在“InstallValidate”之前行动?
我正在将应用程序的版本从 1.1.1 升级到 1.1.2(比如说)。 我已经使用 VS2005 和 VS2005 为应用程序创建了一个设置项目。添加了一个自定义操作,该操作将在安装较新版本 1.1.2 之前以编程方式结束在先前版本 (1.1.1) 中运行的服务。
但“InstallValidate”发生在自定义操作之前。
因此需要使用 ORCA 来更改顺序,即我希望在 InstallValidate 执行之前执行自定义操作。
谁能帮我解决这个问题 详细携带步骤 自定义后的“InstallValidate” 行动。
我是 MSI 数据库操作的新手。
提前致谢。
I am upgrading the version of my app from 1.1.1 to 1.1.2 (say).
I have created a set up project for the application using VS2005 & have added a custom action which would programatically end a service running in the previous version(1.1.1) before installing newer version 1.1.2.
But "InstallValidate" happens before custom action.
Hence need to use ORCA to change the sequence i.e I want the custom action to execute before the InstallValidate executes.
Can anyone kindly help me with the
detailed steps to bring
"InstallValidate" after custom
actions.
I am new to the MSI database manipulations.
Thnks In advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Orca 中,转到 InstallExecuteSequence 并找到您的自定义操作。修改其Sequence字段,使其序列低于InstallValidate。
In Orca go to InstallExecuteSequence and find your custom action. Modify its Sequence field so it has a sequence lower than InstallValidate.