私のインストーラーには、2つの機能があります。1つの機能を無効にすると、[参照]ボタン(およびINSTALLDIRパスを含む編集コントロール)がUIから消えます。これは、両方の機能要素が同じConfigurableDirectory="INSTALLDIR"属性を使用しているためだと思います。
<Feature Id="MYCLIENT" AllowAdvertise="no" ConfigurableDirectory="INSTALLDIR"
Title="Client component"
Description="Client Component" Level="1">
<ComponentGroupRef="Client1"/>
</Feature>
<Feature Id="MYMMC" AllowAdvertise="no" ConfigurableDirectory="INSTALLDIR"
Title="MMC Components"
Description="MMC Components" Level="1">
<ComponentGroupRef Id="MMC1"/>
<!-- MMC snap-in requires some client components -->
<ComponentGroupRef Id="Client1"/>
</Feature>
機能が選択解除された/インストールされていないときにINSTALLDIRブラウズコントロールが消えないようにするには、何を実装する必要がありますか?
TIA