作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我如何才能拥有依赖于系统依赖项(例如 powershell)的功能,但仍然向用户表明此功能在安装程序中可用。
目前功能列表如下(截图): Feature List
我目前的想法是为功能设置条件:
<Property Id="POWERSHELL_3_INSTALLED">
<RegistrySearch Id="Powershell3Installed"
Root="HKLM"
Key="SOFTWARE\Microsoft\PowerShell\3"
Type="raw"
Name="Install" />
</Property>
<Feature Id="TestFeature"
Title="Test Feature"
Description="Test Feature Description. Note: This feature requires Powershell 3 or higher."
Level="1"
Absent="allow"
InstallDefault="local"
AllowAdvertise="no">
<Condition Level="0">
<![CDATA[(POWERSHELL_3_INSTALLED <> "#1") AND NOT REMOVE]]>
</Condition>
</Feature>
这确实为没有安装 powershell 的用户隐藏了 TestFeature
,阻止他们安装它,但这样用户就不知道如果他们安装 powershell 就可以使用这个额外的功能。
有什么想法可以实现吗?
最佳答案
Windows Installer 中的 SelectionTree 控件不支持显示禁用的功能。您将不得不重新实现它——例如,使用复选框。
关于wix - 我如何为禁用它的功能设置条件(而不是隐藏它)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28692743/
我是一名优秀的程序员,十分优秀!