Difference between revisions of "Spark"
From WPKG | Open Source Software Deployment and Distribution
(Spark) |
(No difference)
|
Revision as of 18:48, 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>