Difference between revisions of "PaintDotNet"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
 
m
Line 1: Line 1:
 +
This is a silent installer and uninstaller for PaintDotNet.
 +
 
[http://www.eecs.wsu.edu/paint.net Paint.NET] is a spiffy image editor for Windows using C#.
 
[http://www.eecs.wsu.edu/paint.net Paint.NET] is a spiffy image editor for Windows using C#.
 
<pre>
 
<pre>
Line 9: Line 11:
 
     <check type="uninstall" condition="exists" path="Paint.NET v2.1b" />
 
     <check type="uninstall" condition="exists" path="Paint.NET v2.1b" />
  
     <install cmd='msiexec /i "\\server\share\PaintDotNet_2_1b.msi" /q'>
+
     <install cmd='msiexec /i "%SOFTWARE%\PaintDotNet\PaintDotNet_2_1b.msi" /q' />
        <exit code="0" />
+
     <remove cmd="msiexec /q /x{9DA9E3D2-A7FD-4206-9604-11B01A0CDA5F}" />
    </install>
+
     <upgrade cmd='msiexec /i "\\server\share\PaintDotNet_2_1b.msi" /q' />
     <remove cmd="msiexec /q /x{9DA9E3D2-A7FD-4206-9604-11B01A0CDA5F}">
+
        <exit code="0"/>
+
    </remove>
+
     <upgrade cmd='msiexec /i "\\server\share\PaintDotNet_2_1b.msi" /q'>
+
        <exit code="0" />
+
    </upgrade>
+
 
</package>
 
</package>
 
</pre>
 
</pre>
Line 23: Line 19:
  
  
[[category:Silent Installers|PaintDotNet]]
+
[[category:Silent Installers]]

Revision as of 20:28, 2 October 2006

This is a silent installer and uninstaller for PaintDotNet.

Paint.NET is a spiffy image editor for Windows using C#.

<package
    id="paint.net"
    name="Paint.Net"
    revision="1"
    reboot="false"
    priority="0">
    <check type="uninstall" condition="exists" path="Paint.NET v2.1b" />

    <install cmd='msiexec /i "%SOFTWARE%\PaintDotNet\PaintDotNet_2_1b.msi" /q' />
    <remove cmd="msiexec /q /x{9DA9E3D2-A7FD-4206-9604-11B01A0CDA5F}" />
    <upgrade cmd='msiexec /i "\\server\share\PaintDotNet_2_1b.msi" /q' />
</package>