我解决了问题。
<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。