I've read the whole manual twice now and have my XML build file setup so that it does everything except insert the program into the Start Menu on Windows (my test machine happens to be Windows 7, but I imagine the problem will also happen on Vista) machines. What option am I overlooking?
shortcutSpec.xml
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<shortcuts>
<skipIfNotSupported/>
<programGroup defaultName="myapp" location="applications"/>
<shortcut
name="myapp"
programGroup="yes"
desktop="no"
applications="yes"
startMenu="yes"
startup="no"
target="$INSTALL_PATH\myapp.jar"
commandLine=""
description="myapp"
iconFile="%SystemRoot%\system32\SHELL32.dll"
iconIndex="3">
<createForPack name="Base"/>
</shortcut>
<shortcut
name="myapp Documentation"
programGroup="yes"
desktop="no"
applications="yes"
startMenu="yes"
startup="no"
target="$INSTALL_PATH\myappMan.pdf"
commandLine=""
iconFile="%SystemRoot%\system32\SHELL32.dll"
iconIndex="30"
description="myapp docs">
<createForPack name="Manual"/>
</shortcut>
<shortcut
name="myapp Uninstaller"
programGroup="yes"
desktop="no"
applications="yes"
startMenu="yes"
startup="no"
target="$INSTALL_PATH\Uninstaller\uninstaller.jar"
commandLine=""
iconFile="%SystemRoot%\system32\SHELL32.dll"
iconIndex="31"
description="Uninstall myapp">
<createForPack name="Base"/>
</shortcut>
</shortcuts>