Difference between revisions of "Kodip"
From WPKG | Open Source Software Deployment and Distribution
m |
m |
||
Line 3: | Line 3: | ||
First, do a "server installation". Then, use that path in INSTALLDIR= parameter to msiexec. | First, do a "server installation". Then, use that path in INSTALLDIR= parameter to msiexec. | ||
− | + | It looks that KODIP.exe needs to be started as the very first program from all other KODIP programs - otherwise, these programs may report errors. | |
Also, you may want to see [[DRGScout|DRGScout silent installer]]. | Also, you may want to see [[DRGScout|DRGScout silent installer]]. |
Revision as of 09:50, 20 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.
It looks that KODIP.exe needs to be started as the very first program from all other KODIP programs - otherwise, these programs may report errors.
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' /> <install cmd='cmd /C start /i \\server\3m\kodip.srv\KODIP.exe' /> <install cmd='ping 127.0.0.1 -n 20>NUL' /> <install cmd='taskkill /F /IM KODIP.exe' /> <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' /> <upgrade cmd='cmd /C start /i \\server\3m\kodip.srv\KODIP.exe' /> <upgrade cmd='ping 127.0.0.1 -n 20>NUL' /> <upgrade cmd='taskkill /F /IM KODIP.exe' /> <remove cmd='msiexec /qn /x{7E26DC08-1887-4090-82C3-D00379B89354}' /> </package> </packages>