Your Excellency,
I have attached the Installer Script for your reference.
I have a problem when I click in the Programs ---> XMLVision---XMLVision
The Jar file is extracted from the installer and stored into the Desktop. Please give an Idea.
One More Question.
Can I make unix Installer for using NSIS Script.
Thanks
veerasekar
japan,
The Script is attached here. Thanks
Edit (Afrow UK, 28th April 2006, 11:37)
I have removed the code from your post. Please only include your source code as a file attachment using the attach feature.
Jar file is extracted in the installer
2 posts
Your InstallDirRegKey is set to:
InstallDirRegKey HKCU "Software\xmleditor" ""
And yet, you are writing $INSTDIR to a different registry key:
WriteRegStr HKLM SOFTWARE\xmleditor "Install_Dir" "$INSTDIR"
No doubt the default registry key under "Software\xmleditor" is empty and so $INSTDIR will be empty as well. If $INSTDIR is empty, then Desktop is used.
-Stu
InstallDirRegKey HKCU "Software\xmleditor" ""
And yet, you are writing $INSTDIR to a different registry key:
WriteRegStr HKLM SOFTWARE\xmleditor "Install_Dir" "$INSTDIR"
No doubt the default registry key under "Software\xmleditor" is empty and so $INSTDIR will be empty as well. If $INSTDIR is empty, then Desktop is used.
-Stu