Difference between revisions of "PaintDotNet"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(Package stanza)
m (Update to version 3.5.2)
Line 11: Line 11:
 
To do this download the installer and run it with the [http://www.eecs.wsu.edu/paint.net/doc/2.6/Help/en/UnattendedInstallation.html options] you want making sure to add "/createMsi":
 
To do this download the installer and run it with the [http://www.eecs.wsu.edu/paint.net/doc/2.6/Help/en/UnattendedInstallation.html options] you want making sure to add "/createMsi":
 
<source lang="dos">
 
<source lang="dos">
Paint.NET.3.5.1.Install.exe /createMsi CHECKFORUPDATES=1 CHECKFORBETAS=0 JPGPNGBMPEDITOR=1 TGAEDITOR=1 ALLUSERS=1 DESKTOPSHORTCUT=1
+
Paint.NET.3.5.2.Install.exe /createMsi CHECKFORUPDATES=1 CHECKFORBETAS=0 JPGPNGBMPEDITOR=1 TGAEDITOR=1 ALLUSERS=1 DESKTOPSHORTCUT=1
 
</source>
 
</source>
This will create a folder called "PaintDotNetMsi" with two files in it: "PaintDotNet.x64.msi" and "PaintDotNet.x86.msi".  Copy the "PaintDotNet.x86.msi" to your server as "paint.net-3.5.1.msi".
+
This will create a folder called "PaintDotNetMsi" with two files in it: "PaintDotNet.x64.msi" and "PaintDotNet.x86.msi".  Copy the "PaintDotNet.x86.msi" to your server as "paint.net-3.5.2.msi".
  
 
== Package stanza ==
 
== Package stanza ==
Line 26: Line 26:
 
         <depends package-id="dotnet35" />
 
         <depends package-id="dotnet35" />
  
         <check type="uninstall" condition="exists" path="Paint.NET v3.5.1" />
+
         <check type="uninstall" condition="exists" path="Paint.NET v3.5.2" />
 
          
 
          
<install cmd='msiexec /qn /i %SOFTWARE%\paintdotnet\paint.net-3.5.1.msi' />
+
<install cmd='msiexec /qn /i %SOFTWARE%\paintdotnet\paint.net-3.5.2.msi' />
  
<upgrade cmd='msiexec /qn /i %SOFTWARE%\paintdotnet\paint.net-3.5.1.msi' />
+
<upgrade cmd='msiexec /qn /i %SOFTWARE%\paintdotnet\paint.net-3.5.2.msi' />
  
<remove cmd='msiexec /qn /x {D3E7A2A5-A059-4A44-949B-21FBD371A8B8}' />
+
<remove cmd='msiexec /qn /x {4F77F6EE-2C99-49F7-940A-2E9C208C3BE1}' />
 
</package>
 
</package>
 
</source>
 
</source>

Revision as of 04:25, 16 February 2010

This is a silent installer, upgrader and uninstaller for Paint.NET.

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

Requirements

  • Administrator access
  • Create a .msi from the .exe (/auto on the .exe will fail if you're using the WPKG Client or running WPKG over ssh and it has no option to run silently either)
  • .Net framework 3.5 SP1

Create .msi

To do this download the installer and run it with the options you want making sure to add "/createMsi":

Paint.NET.3.5.2.Install.exe /createMsi CHECKFORUPDATES=1 CHECKFORBETAS=0 JPGPNGBMPEDITOR=1 TGAEDITOR=1 ALLUSERS=1 DESKTOPSHORTCUT=1

This will create a folder called "PaintDotNetMsi" with two files in it: "PaintDotNet.x64.msi" and "PaintDotNet.x86.msi". Copy the "PaintDotNet.x86.msi" to your server as "paint.net-3.5.2.msi".

Package stanza

<package
	id="paintdotnet"
	name="paintdotnet"
	revision="2"
	reboot="false"
	priority="5">

        <depends package-id="dotnet35" />	

        <check type="uninstall" condition="exists" path="Paint.NET v3.5.2" />
        
	<install cmd='msiexec /qn /i %SOFTWARE%\paintdotnet\paint.net-3.5.2.msi' />

	<upgrade cmd='msiexec /qn /i %SOFTWARE%\paintdotnet\paint.net-3.5.2.msi' />

	<remove cmd='msiexec /qn /x {4F77F6EE-2C99-49F7-940A-2E9C208C3BE1}' />
</package>

External links