Difference between revisions of "Spark"
From WPKG | Open Source Software Deployment and Distribution
m |
m |
||
| Line 3: | Line 3: | ||
Spark Download Page: [http://www.igniterealtime.org/projects/spark/index.jsp] | Spark Download Page: [http://www.igniterealtime.org/projects/spark/index.jsp] | ||
| − | This xml uninstalls an already | + | This xml uninstalls an already installed Spark version. |
| − | The installed | + | The installed version was 2.5.0 (installed by the install4j installer). |
| − | Options for Install4j (silent uninstall) can be | + | Options for Install4j (silent uninstall) can be found at: [http://resources.ej-technologies.com/install4j/help/doc/] |
For the new install I used the MSI-Package | For the new install I used the MSI-Package | ||
Revision as of 21:20, 20 October 2007
Spark is an Open Source, cross-platform XMMP Client.
Spark Download Page: [1]
This xml uninstalls an already installed Spark version. The installed version was 2.5.0 (installed by the install4j installer). Options for Install4j (silent uninstall) can be found at: [2]
For the new install I used the MSI-Package
<?xml version="1.0" encoding="UTF-8"?>
<packages>
<package
id="spark250-uninstall"
name="Uninstall: Spark 2.5.0 XMMP-Client"
revision="1"
reboot="false"
priority="5">
<check type="logical" condition="not">
<check type="file" condition="exists" path="%PROGRAMFILES%\Spark\uninstall.exe" />
</check>
<install cmd='%PROGRAMFILES%\Spark\uninstall.exe -q' />
</package>
<package
id="spark"
name="Spark"
revision="2"
reboot="false"
priority="0">
<check type="uninstall" condition="exists" path="Spark" />
<install cmd='msiexec /qn /i %SOFTWARE%\spark\spark_2_5_7.msi' />
<upgrade cmd='msiexec /qn /i %SOFTWARE%\spark\spark_2_5_7.msi' />
<remove cmd='msiexec /qn /x %SOFTWARE%\spark\spark_2_5_7.msi' />
</package>
</packages>