Difference between revisions of "Spark"
From WPKG | Open Source Software Deployment and Distribution
(Spark) |
m |
||
Line 7: | Line 7: | ||
Options for Install4j (silent uninstall) can be fount at: [http://resources.ej-technologies.com/install4j/help/doc/] | Options for Install4j (silent uninstall) can be fount at: [http://resources.ej-technologies.com/install4j/help/doc/] | ||
− | For the new install | + | For the new install I used the MSI-Package |
Revision as of 21:19, 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 fount 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>