Difference between revisions of "Kodip"
From WPKG | Open Source Software Deployment and Distribution
m |
m |
||
Line 1: | Line 1: | ||
This is a silent installer and uninstaller for Kodip 4.3. | This is a silent installer and uninstaller for Kodip 4.3. | ||
− | First, | + | First, do a "server installation". Then, use that path in INSTALLDIR= parameter to msiexec. |
− | Also, you may want to see [[DRGScout silent installer]]. | + | Also, you may want to see [[DRGScout|DRGScout silent installer]]. |
<pre> | <pre> |
Revision as of 18:18, 19 April 2007
This is a silent installer and uninstaller for Kodip 4.3.
First, do a "server installation". Then, use that path in INSTALLDIR= parameter to msiexec.
Also, you may want to see DRGScout silent installer.
<?xml version="1.0" encoding="UTF-8"?> <packages> <package id="kodip" name="KODIP Client 4.3" revision="1" priority="1"> <check type="uninstall" condition="exists" path="KODIP Client 4.3" /> <install cmd='msiexec /qn /i "%SOFTWARE%\KODIP\Client\KODIP\KODIP Client 4.3.msi" INSTALLDIR="\\server\3m\kodip.srv" ALLUSERS=1 ADDLOCAL=ALL' /> <upgrade cmd='msiexec /qn /x{7E26DC08-1887-4090-82C3-D00379B89354}' /> <upgrade cmd='msiexec /qn /i "%SOFTWARE%\KODIP\Client\KODIP\KODIP Client 4.3.msi" INSTALLDIR="\\server\3m\kodip.srv" ALLUSERS=1 ADDLOCAL=ALL' /> <remove cmd='msiexec /qn /x{7E26DC08-1887-4090-82C3-D00379B89354}' /> </package> </packages>