Difference between revisions of "UltraEdit"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
m
 
Line 3: Line 3:
 
This package definition deletes the top-level Start Menu shortcut created by the UltraEdit installer.  It does not configure any license key.  If you support non-admin users, you may also need to give users write access to %SystemRoot%\uedit32.ini or map uedit32.ini to the registry.
 
This package definition deletes the top-level Start Menu shortcut created by the UltraEdit installer.  It does not configure any license key.  If you support non-admin users, you may also need to give users write access to %SystemRoot%\uedit32.ini or map uedit32.ini to the registry.
  
<package
+
<source lang="xml">
 +
<package
 
   id="ultraedit"
 
   id="ultraedit"
 
   name="UltraEdit-32 Text Editor"
 
   name="UltraEdit-32 Text Editor"
Line 14: Line 15:
 
  <upgrade cmd='cmd /c del "%AllUsersProfile%\Start Menu\UltraEdit-32.lnk"'/>
 
  <upgrade cmd='cmd /c del "%AllUsersProfile%\Start Menu\UltraEdit-32.lnk"'/>
 
  <remove cmd='"%SOFTWARE%\UltraEdit\UltraEdit 12.00\uesetup.exe" -u -s'/>
 
  <remove cmd='"%SOFTWARE%\UltraEdit\UltraEdit 12.00\uesetup.exe" -u -s'/>
</package>
+
</package>
 +
</source>
 +
 
 
[[Category:Silent Installers]]
 
[[Category:Silent Installers]]

Latest revision as of 19:14, 27 April 2008

Silent installer for UltraEdit-32, a text editor / hex editor / programmer's editor.

This package definition deletes the top-level Start Menu shortcut created by the UltraEdit installer. It does not configure any license key. If you support non-admin users, you may also need to give users write access to %SystemRoot%\uedit32.ini or map uedit32.ini to the registry.

<package
  id="ultraedit"
  name="UltraEdit-32 Text Editor"
  revision="12000"
  priority="500">
 <check type="uninstall" condition="exists" path="UltraEdit-32" />
 <install cmd='"%SOFTWARE%\UltraEdit\UltraEdit 12.00\uesetup.exe" -s'/>
 <install cmd='cmd /c del "%AllUsersProfile%\Start Menu\UltraEdit-32.lnk"'/>
 <upgrade cmd='"%SOFTWARE%\UltraEdit\UltraEdit 12.00\uesetup.exe" -s'/>
 <upgrade cmd='cmd /c del "%AllUsersProfile%\Start Menu\UltraEdit-32.lnk"'/>
 <remove cmd='"%SOFTWARE%\UltraEdit\UltraEdit 12.00\uesetup.exe" -u -s'/>
</package>