isapi&cgi 限制的 wix 启动条件
我的程序需要isapi&cgi限制安装在iis中。我想要一个wix启动条件来限制isapi&cgi是否安装。任何帮助都会很棒。提前致谢。
My program needs isapi&cgi restrictions are installed in iis. I want a wix launch condition for isapi&cgi restrictions are installed or not. Any help would be great. Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决方案是编写一个自定义操作来检测是否安装了这些限制。根据结果,它可以设置可用作启动条件的安装程序属性。
您可以在此处找到自定义操作教程:http://www.codeproject.com/KB/ install/msicustomaction.aspx
自定义操作应安排在 LaunchConditions 操作,它应该是立即的。
A solution is to write a custom action which detects if these restrictions are installed or not. Based on the result it can set an installer property which can be used as a launch condition.
You can find a custom action tutorial here: http://www.codeproject.com/KB/install/msicustomaction.aspx
The custom action should be scheduled before LaunchConditions action and it should be Immediate.