Difference between revisions of "InfraRecorder"
From WPKG | Open Source Software Deployment and Distribution
(→Package for version 0.53 32Bit) |
(→Package for version 0.53 32Bit) |
||
Line 13: | Line 13: | ||
<install cmd='"%SOFTWARE%\infrarecorder\ir%version%.exe" /S' /> | <install cmd='"%SOFTWARE%\infrarecorder\ir%version%.exe" /S' /> | ||
− | <install cmd='%COMSPEC% /c if exist "AllUserProfile%\Desktop\InfraRecorder.lnk" del /q "%AllUserProfile%\Desktop\InfraRecorder.lnk"' > exit code="any" /></install> | + | <install cmd='%COMSPEC% /c if exist "AllUserProfile%\Desktop\InfraRecorder.lnk" del /q "%AllUserProfile%\Desktop\InfraRecorder.lnk"' > |
+ | <exit code="any" /> | ||
+ | </install> | ||
<upgrade include="install" /> | <upgrade include="install" /> |
Revision as of 15:33, 22 June 2013
Silent installer for InfraRecorder.
InfraRecorder is a free GPL'd CD burner for Windows.
Package for version 0.53 32Bit
<package id="infrarecorder" name="InfraRecorder" revision="053" reboot="false" priority="1">
<variable name="version" value="053" />
<check type="uninstall" condition="exists" path="InfraRecorder" />
<check type="file" condition="versiongreaterorequal" path="%PROGRAMFILES%\InfraRecorder\InfraRecorder.exe" value="0.53.0.0" />
<install cmd='"%SOFTWARE%\infrarecorder\ir%version%.exe" /S' />
<install cmd='%COMSPEC% /c if exist "AllUserProfile%\Desktop\InfraRecorder.lnk" del /q "%AllUserProfile%\Desktop\InfraRecorder.lnk"' >
<exit code="any" />
</install>
<upgrade include="install" />
<remove cmd='"%ProgramFiles%\InfraRecorder\Uninstall.exe" /S' />
<!-- The uninstaller doesn't remove the shortcuts. replace "Start Menu\Programs" by the language specific string -->
<remove cmd='%COMSPEC% /c rmdir /q /s "%AllUsersProfile%\Start Menu\Programs\InfraRecorder"' />
</package>
Package for version 0.51 64Bit
<package id='infrarecorder-x64' name='InfraRecorder x64' revision='051' reboot='false' priority='1'>
<check type='uninstall' condition='exists' path='InfraRecorder 0.51 (x64 edition)' />
<check type='file' condition='versiongreaterorequal' path='%PROGRAMFILES%\InfraRecorder\InfraRecorder.exe' value='0.51.0.0' />
<install cmd='msiexec.exe /i "%SOFTWARE%\infrarecorder\ir051_x64.msi" /passive /norestart' timeout='300'>
<exit code='0' />
<exit code='3010' reboot='postponed' />
</install>
<upgrade cmd='msiexec.exe /i "%SOFTWARE%\infrarecorder\ir051_x64.msi" /passive /norestart' timeout='300'>
<exit code='0' />
<exit code='3010' reboot='postponed' />
</upgrade>
<remove cmd='msiexec.exe /x{2C22EA92-CB30-4932-0051-000001000000} /passive /norestart' timeout='300'>
<exit code='0' />
<exit code='1605' />
<exit code='3010' reboot='postponed' />
</remove>
</package>