Difference between revisions of "Launchy"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
(Fix shortcuts)
Line 6: Line 6:
 
   <package id="launchy" name="Launchy" revision="1" reboot="false" priority="2">
 
   <package id="launchy" name="Launchy" revision="1" reboot="false" priority="2">
 
   <check type="uninstall" condition="exists" path="Launchy 2.5" />
 
   <check type="uninstall" condition="exists" path="Launchy 2.5" />
   <install cmd='"%SOFTWARE%\utilities\launchy2.5.exe" /VERYSILENT /NORESTART' />
+
   <install cmd='"%SOFTWARE%\utilities\launchy2.5.exe" /VERYSILENT /NORESTART /LOADINF="%SOFTWARE%\utilities\launchy.inf' />
   <upgrade cmd='"%SOFTWARE%\utilities\launchy2.5.exe" /VERYSILENT /NORESTART' />
+
   <upgrade cmd='"%SOFTWARE%\utilities\launchy2.5.exe" /VERYSILENT /NORESTART /LOADINF="%SOFTWARE%\utilities\launchy.inf' />
 
   <remove cmd='"%PROGRAMFILES%\Launchy\unins000.exe" /VERYSILENT /NORESTART' ><exit code="1" /></remove>
 
   <remove cmd='"%PROGRAMFILES%\Launchy\unins000.exe" /VERYSILENT /NORESTART' ><exit code="1" /></remove>
 
</package>
 
</package>
 
</source>
 
</source>
  
FIXME:
+
Launchy.inf is created by running the installer with /SAVEINF=launchy.inf. You are going to want to select the option to create icons for all users.
When installed via WPKG, using WPKG Client, shortcuts were created in the Default User profile on win2k, and were not created at all on XP.
+
Not tested on Vista or Win7.
+
  
 
[[category:Silent Installers]]
 
[[category:Silent Installers]]

Revision as of 00:35, 16 February 2011

This is a silent installer for the Launchy keystroke launcher.

Launchy project.

  <package id="launchy" name="Launchy" revision="1" reboot="false" priority="2">
  <check type="uninstall" condition="exists" path="Launchy 2.5" />
  <install cmd='"%SOFTWARE%\utilities\launchy2.5.exe" /VERYSILENT /NORESTART /LOADINF="%SOFTWARE%\utilities\launchy.inf' />
  <upgrade cmd='"%SOFTWARE%\utilities\launchy2.5.exe" /VERYSILENT /NORESTART /LOADINF="%SOFTWARE%\utilities\launchy.inf' />
  <remove cmd='"%PROGRAMFILES%\Launchy\unins000.exe" /VERYSILENT /NORESTART' ><exit code="1" /></remove>
</package>

Launchy.inf is created by running the installer with /SAVEINF=launchy.inf. You are going to want to select the option to create icons for all users.