Details
-
Type:
Bug
-
Status:
Open
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: 4.3.5
-
Fix Version/s: None
-
Component/s: Installer
-
Labels:None
-
Environment:Windows
-
Number of attachments :
Description
I have windows shortcut specification with product and uninstaller that works in 4.3.2, but in 4.3.5 the Uninstaller target (set to javaw) uses application $INSTALL_PATH/myapplication.exe instead of javaw in Start menu shortcut. Here is the shortcut spec:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<shortcuts>
<skipIfNotSupported/>
<programGroup defaultName="MyApplication" location="startMenu"/>
<shortcut
name="MyApplication 4.0"
target="$INSTALL_PATH/myapplication.exe"
workingDirectory="$INSTALL_PATH"
description="MyApplication 4.0 Client"
type="Application"
iconFile="$INSTALL_PATH\img\MyApplication_new.ico"
iconIndex="0"
initialState="noShow"
programGroup="yes"
desktop="yes"
applications="no"
startMenu="yes"
startup="no">
<createForPack name="MyApplication Client"/>
</shortcut>
<shortcut
name="Globalyzer Uninstaller"
programGroup="yes"
desktop="no"
applications="no"
startMenu="yes"
startup="no"
target="javaw"
commandLine="-jar "$INSTALL_PATH/Uninstaller/uninstaller.jar""
initialState="noShow"
iconFile="$INSTALL_PATH\img\MyApplication_new.ico"
iconIndex="0"
workingDirectory="$INSTALL_PATH"
type="Application"
description="MyApplication uninstaller">
<createForPack name="MyApplication Client"/>
</shortcut>
</shortcuts>