设置快捷方式目标路径 Wix



我想在 wix 中为广告快捷方式设置快捷方式目标路径这是现在创建 shorcut 的代码:

<Component Id="APP_EXE" Directory="INSTALLDIR" DiskId="1" Guid="XXXX-XXXX">
<File Id="AppExe" Name="app.exe" Source="$(var.ComponentSourceDir)$(var.ExeName)" KeyPath="yes">
    <Shortcut Id="desktopShortcut" Advertise="yes" Directory="DesktopFolder" Name="$(var.VersionedName)" WorkingDirectory="INSTALLDIR" Icon="MainIcon.exe" IconIndex="0" />
  </File>
</Component>

快捷方式属性窗口中的目标现在是只读的,它显示应用程序名称。我无法改变它。

我创建了一个新组件,用于创建快捷方式。我删除了前一个。

<Component Id="APP_EXE" Directory="INSTALLDIR" DiskId="1" Guid="XXXX-XXXX">
<File Id="AppExe" Name="app.exe" Source="$(var.ComponentSourceDir)$(var.ExeName)" KeyPath="yes">
  </File>
</Component>
<Component Id="APP_SHORTCUT" Directory="INSTALLDIR" DiskId="1" Guid="XXXX_XXXXX">
  <RegistryValue Root="HKCU" Key="SoftwareAPPInstaller" Name="desktopShortcut" Value="KeyPath" KeyPath="yes" Type="string" />
  <Shortcut Id="desktopShortcut" Directory="DesktopFolder" Name="$(var.VersionedName)" WorkingDirectory="INSTALLDIR" Icon="MainIcon.exe" IconIndex="0" Target="[INSTALLDIR]app.exe"/>
</Component>

最新更新