我正在使用 WiX Toolkit v3.11 来创建我的软件设置。在安装期间,我使用以下代码创建开始菜单快捷方式:
<Shortcut Id='startmenuMyProgram'
Name='$(var.MyProgramName)'
Directory='ProgramMenuFolder'
WorkingDirectory='APPLICATIONFOLDER'
Advertise='yes'
Icon='icon.exe'>
<Icon Id='icon.exe' SourceFile='$(var.Setuppath)\MyProgram.exe'/>
</Shortcut>
通过这种方式,我还为其他可执行文件创建了两个快捷方式。现在对于卸载,我想删除快捷方式。
<Component Id="removeStartmenuShortcuts" Guid="803ad14a-feab-4901-b9db-2c4a1298ae8b">
<Condition>(REMOVE=ALL) AND NOT (WIX_UPGRADE_DETECTED OR UPGRADINGPRODUCTCODE)</Condition>
<RemoveFile Id="remove_startmenuProgram1" Name="startmenuMyProgram" On="uninstall" />
<RemoveFile Id="remove_startmenuProgram2" Name="startmenuMyProgram2" On="uninstall"/>
<RemoveFile Id="remove_startmenuProgram3" Name="startmenuMyProgram3" On="uninstall"/>
</Component>
当我卸载软件时,这没有任何问题。但是当执行更新时,快捷方式也会被删除。但我想阻止这种行为,但条件似乎不起作用。因此,当我进行更新时,Windows 任务栏中的所有快捷方式都会被删除。
如何使我的更新进度正常工作?
这里是更新后的行为:
右边所有快捷方式的组不见了!