Difference between revisions of "Xming"

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 Xming (XWindows server for Windows) and its associated font files. Note the uninstaller for the xming-fonts package uses unins001.exe.  That's by the author's design.
+
This is a silent installer and uninstaller for Xming (XWindows server for Windows) and its associated font files. Note the uninstaller for the xming-fonts package uses unins001.exe.  That's by the author's design.
  
Xming is available [http://www.straightrunning.com/XmingNotes here]
+
Xming is available [http://www.straightrunning.com/XmingNotes here].
  
<pre>
+
<source lang="xml">
 
<packages>
 
<packages>
  
Line 35: Line 35:
  
 
</packages>
 
</packages>
</pre>
+
</source>
  
 
[[category:Silent Installers]]
 
[[category:Silent Installers]]

Revision as of 05:58, 1 April 2008

This is a silent installer and uninstaller for Xming (XWindows server for Windows) and its associated font files. Note the uninstaller for the xming-fonts package uses unins001.exe. That's by the author's design.

Xming is available here.

<packages>

<package 
   id="xming" 
   name="XMing 6.9.0.31" 
   revision="69031" 
   reboot="false" 
   priority="5">

   <check type="uninstall" condition="exists" path="Xming 6.9.0.31" />
   <install cmd='"%SOFTWARE%\xming\Xming-6-9-0-31-setup.exe" /verysilent' />
   <upgrade cmd='"%SOFTWARE%\xming\Xming-6-9-0-31-setup.exe" /verysilent' />
   <remove cmd='"%PROGRAMFILES%\xming\unins000.exe" /s' />
</package>

<package 
   id="xming-fonts" 
   name="XMing Fonts 7.3.0.15" 
   revision="73015" 
   reboot="false" 
   priority="5">

   <depends package-id="xming" />
   <check type="uninstall" condition="exists" path="Xming-fonts 7.3.0.15" />
   <install cmd='"%SOFTWARE%\xming\Xming-fonts-7-3-0-15-setup.exe" /verysilent' />
   <upgrade cmd='"%SOFTWARE%\xming\Xming-fonts-7-3-0-15-setup.exe" /verysilent' />
   <remove cmd='"%PROGRAMFILES%\xming\unins001.exe" /s' />

</package>

</packages>