使用复选框和 Wix 工具集创建快捷方式

问题描述 投票:0回答:1
wix heatwave
1个回答
0
投票

我解决了问题。

 <Component Id="DesktopShortcut" Condition="INSTALLDESKTOPSHORTCUT">
            <CreateFolder/>
            <RegistryKey Root="HKCU" Key="Software\Secops Solutions, Inc\Agent\Install" >
                <RegistryValue Name="DTSC" Value="1" Type="integer" KeyPath="yes"/>
            </RegistryKey>
            <Shortcut Id="DesktopShortcut" Directory="DesktopFolder"
            Name="Life Balance" WorkingDirectory="INSTALLFOLDER"
            Icon="icon" Target="DesktopFile"/>
        </Component>

在这段代码中我必须更改目标如下

 <Component Id="DesktopShortcut" Condition="INSTALLDESKTOPSHORTCUT">
            <CreateFolder/>
            <RegistryKey Root="HKCU" Key="Software\Secops Solutions, Inc\Agent\Install" >
                <RegistryValue Name="DTSC" Value="1" Type="integer" KeyPath="yes"/>
            </RegistryKey>
            <Shortcut Id="DesktopShortcut" Directory="DesktopFolder"
            Name="Life Balance" WorkingDirectory="INSTALLFOLDER"
            Icon="icon" Target="[#DesktopFile]"/>
        </Component>

在此只需将目标更改为

Target=[#DesktopFile]
这是文件的 id。

© www.soinside.com 2019 - 2024. All rights reserved.