如何将功能状态写入注册表项



如果在安装过程中安装了功能,那么写入reg键的最佳方法是什么?

您应该使用带有特定条件的组件。条件可能引用功能状态(当前或请求 - 有关更多详细信息,请参阅此链接)。我使用"&"符号 - 它被请求(应该通过安装来实现)功能状态。

<Component Id="MyComponentSpecificReg" Guid="YOURGUID">
    <Condition>&MyFeatureId = 3</Condition> <!--install this component only of feature requested state is LOCAL (You may need other condition - please read the link I posted above)-->
    <RegistryKey Root="YOUR REG ROOT" Key="YOUR REGISTRY PATH" Action="create">
        <RegistryValue Name="YourKeyName" Type="string" Value="[YOUR_PROPERTY]"/>
    </RegistryKey>
</Component>

相关内容

  • 没有找到相关文章

最新更新