InfraRecorder

From WPKG | Open Source Software Deployment and Distribution
Revision as of 11:11, 16 August 2010 by 217.91.110.192 (Talk) (updated to 0.51, added 64bit package)

Jump to: navigation, search

Silent installer for InfraRecorder.

InfraRecorder is a free GPL'd CD burner for Windows.

Package for version 0.51 32Bit

<package id="infrarecorder" name="InfraRecorder" revision="051" reboot="false" priority="1">
    <check type="uninstall" condition="exists" path="InfraRecorder" />
    <check type="file" condition="versiongreaterorequal" path="%PROGRAMFILES%\InfraRecorder\InfraRecorder.exe" value="0.51.0.0" />

    <install cmd='"%SOFTWARE%\infrarecorder\ir051.exe" /S' />
    <install cmd='cmd /c del /q /s "%AllUsersProfile%\Desktop\InfraRecorder.lnk"'><exit code="1" /></install>

    <upgrade cmd='"%SOFTWARE%\infrarecorder\ir051.exe" /S' />
    <upgrade cmd='cmd /c del /q /s "%AllUsersProfile%\Desktop\InfraRecorder.lnk"'><exit code="1" /></upgrade>

    <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>