Difference between revisions of "QIP 2010"
From WPKG | Open Source Software Deployment and Distribution
| Line 1: | Line 1: | ||
QIP is a Russian-made, multiprotocal instant messenger. You can download it from [http://qip.ru QIP 2010] | QIP is a Russian-made, multiprotocal instant messenger. You can download it from [http://qip.ru QIP 2010] | ||
| + | It is compiled with Inno Setup Compiler: | ||
<package id="qip" name="qip" revision="6" reboot="false" priority="4"> | <package id="qip" name="qip" revision="6" reboot="false" priority="4"> | ||
Revision as of 14:54, 2 July 2011
QIP is a Russian-made, multiprotocal instant messenger. You can download it from QIP 2010
It is compiled with Inno Setup Compiler:
<package id="qip" name="qip" revision="6" reboot="false" priority="4">
<check type="file" condition="versiongreaterorequal" path="%PROGRAMFILES%\QIP 2010\qip.exe" value="3.0.0.5768" />
<install cmd='taskkill /F /IM qip.exe' >
<exit code ="any" />
</install>
<install cmd='%SOFTWARE%\internet\qip2010.exe /VERYSILENT' />
<upgrade cmd='taskkill /F /IM qip.exe' >
<exit code ="any" />
</upgrade>
<upgrade cmd='%SOFTWARE%\internet\qip2010.exe /VERYSILENT' />
<remove cmd='taskkill /F /IM qip.exe' >
<exit code ="any" />
</remove>
<remove cmd='%PROGRAMFILES%\QIP 2010\unins000.exe /VERYSILENT' />
</package>