3

ユーザー入力に基づいて、ショートカットに異なる名前を割り当てたいと考えています。これは WiX ツールセットを使用して実現可能ですか? Nameプロパティの値を要素の属性に代入しようとShortcutしましたが、うまくいきません。

4

3 に答える 3

0

私はこの回避策を使用します:

<CustomAction Id="SetShortcutFolder" Return="check" Property="ProgramMenuDir" Value="[ProgramMenuFolder][PRODUCTNAME]"></CustomAction>

<!--Setting up the shortcuts for the product-->
    <Directory Id="ProgramMenuFolder" Name="Programs">
       <Directory Id="ProgramMenuDir" Name="TempName"/>
    </Directory>



<!--Set the install path to match the path of the product already installed-->
<Custom Action="SetInstallPath" Before="CostFinalize"/>

お役に立てれば..:)

于 2013-05-14T08:54:26.403 に答える