Difference between revisions of "Stickies (virtual post-it notes)"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(updated for v7.1e)
(update to 8.0c and added to install script to kill stickies if running before installing/updating)
 
Line 2: Line 2:
  
 
<source lang="xml">
 
<source lang="xml">
<package id="stickies" name="Stickies (virtual post-it notes)" revision="7.1.5" priority="0" reboot="false">
+
<package id="stickies" name="Stickies (virtual post-it notes)" revision="8.0.6" priority="0" reboot="false">
  <variable name="version" value="7.1e" />
+
  <variable name="version" value="8.0c" />
  <check type="uninstall" condition="exists" path="Stickies %version%" />  
+
  <check type="uninstall" condition="exists" path="Stickies %version%" />
 +
<install cmd="taskkill /F /IM stickies.exe">
 +
  <exit code="0" />
 +
  <exit code="128" />
 +
  <exit code="1" />
 +
</install>
 
  <install cmd='%SOFTWARE%\stickies\stickies_setup_%version%.exe -silent' />
 
  <install cmd='%SOFTWARE%\stickies\stickies_setup_%version%.exe -silent' />
 
  <upgrade include="install" />
 
  <upgrade include="install" />

Latest revision as of 18:26, 21 March 2016

This is a silent installer and uninstaller for Stickies (virtual post-it notes).

<package id="stickies" name="Stickies (virtual post-it notes)" revision="8.0.6" priority="0" reboot="false">
 <variable name="version" value="8.0c" />
 <check type="uninstall" condition="exists" path="Stickies %version%" />
 <install cmd="taskkill /F /IM stickies.exe"> 
   <exit code="0" />
   <exit code="128" />
   <exit code="1" />
 </install>
 <install cmd='%SOFTWARE%\stickies\stickies_setup_%version%.exe -silent' />
 <upgrade include="install" />
 <remove cmd="%WINDIR%\uninstallstickies.bat" />

</package>