Difference between revisions of "ISORecorder"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
 
m
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
[http://isorecorder.alexfeinman.com/isorecorder.htm ISO Recorder] power toy that lets you burn CD ISOs without EZ CD Creator, or Nero, etc.
+
This is a silent installer and uninstaller for ISORecorder.
  
<pre>
+
[http://isorecorder.alexfeinman.com/isorecorder.htm ISO Recorder] is a power toy that lets you burn CD ISOs without EZ CD Creator, or Nero, etc.
 +
 
 +
<source lang="xml">
 
<package
 
<package
 
     id="isorecorder"
 
     id="isorecorder"
Line 10: Line 12:
 
     <check type="uninstall" condition="exists" path="ISO Recorder" />
 
     <check type="uninstall" condition="exists" path="ISO Recorder" />
  
     <install cmd='msiexec /i "\\bluto\software\ISORecorderV2RC1.msi" /q'>
+
     <install cmd='msiexec /i "%SOFTWARE%\ISORecorder\\ISORecorderV2RC1.msi" /q' />
        <exit code="0" />
+
    </install>
+
     <remove cmd="msiexec /q /x{DFC6573E-124D-4026-BFA4-B433C9D3FF21}" />
     <remove cmd="msiexec /q /x{DFC6573E-124D-4026-BFA4-B433C9D3FF21}">
+
        <exit code="0"/>
+
    </remove>
+
 
</package>
 
</package>
</pre>
+
</source>
  
  
[[category:Silent Installers|ISO Recorder]]
+
[[category:Silent Installers]]

Latest revision as of 22:56, 15 February 2008

This is a silent installer and uninstaller for ISORecorder.

ISO Recorder is a power toy that lets you burn CD ISOs without EZ CD Creator, or Nero, etc.

<package
    id="isorecorder"
    name="ISO Recorder"
    revision="0"
    reboot="false"
    priority="0">
    <check type="uninstall" condition="exists" path="ISO Recorder" />

    <install cmd='msiexec /i "%SOFTWARE%\ISORecorder\\ISORecorderV2RC1.msi" /q' />
 
    <remove cmd="msiexec /q /x{DFC6573E-124D-4026-BFA4-B433C9D3FF21}" />
</package>