Difference between revisions of "QIP 2010"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
 
Line 3: Line 3:
 
It is compiled with Inno Setup Compiler:
 
It is compiled with Inno Setup Compiler:
  
 +
<source lang="xml">
 
     <package id="qip" name="qip" revision="6" reboot="false" priority="4">
 
     <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"  />
 
         <check type="file" condition="versiongreaterorequal" path="%PROGRAMFILES%\QIP 2010\qip.exe" value="3.0.0.5768"  />
Line 20: Line 21:
 
         <remove cmd='%PROGRAMFILES%\QIP 2010\unins000.exe /VERYSILENT' />
 
         <remove cmd='%PROGRAMFILES%\QIP 2010\unins000.exe /VERYSILENT' />
 
     </package>
 
     </package>
 +
</source>
 +
 +
[[Category:Silent Installers]]

Latest revision as of 14:56, 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>