Difference between revisions of "Gallery Remote"
From WPKG | Open Source Software Deployment and Distribution
(update for version 1.5 + some nasty hacks to get uninstall working. Add dependencies.) |
m (add external link and and description) |
||
Line 1: | Line 1: | ||
− | This is a silent installer and uninstaller for Gallery Remote. | + | This is a silent installer and uninstaller for Gallery Remote, a tool to use with Gallery, an Online photo manager. More infos from [http://gallery.menalto.com/wiki/Gallery_Remote here] |
<source lang="xml"> | <source lang="xml"> | ||
Line 15: | Line 15: | ||
</package> | </package> | ||
</source> | </source> | ||
+ | |||
[[category:Silent Installers]] | [[category:Silent Installers]] |
Latest revision as of 10:16, 1 April 2011
This is a silent installer and uninstaller for Gallery Remote, a tool to use with Gallery, an Online photo manager. More infos from here
<package id="galleryremote" name="GalleryRemote (Update Gallery websites)" revision="1" priority="2" reboot="false">
<depends package-id="java6" />
<depends package-id="reg" /> <!-- For Win2k. Without reg.exe Gallery Remote cannot find Imagemagick -->
<check type="uninstall" condition="exists" path="Gallery Remote" />
<install cmd='%SOFTWARE%\gallery\GalleryRemote.1.5.Win32.NoVM.exe -i SILENT' />
<upgrade cmd='%SOFTWARE%\gallery\GalleryRemote.1.5.Win32.NoVM.exe -i SILENT' />
<remove cmd='"%PROGRAMFILES%\Gallery Remote\UninstallerData\Uninstall gallery_remote.exe" -i SILENT' >
<exit code="0" />
<exit code="-1" /> <!-- Not sure why uninstaller is returning -1, but it appears to have been successful -->
</remove>
<remove cmd='ping 127.0.0.1 -n 10>NUL' /> <!-- Post remove check failing without this pause -->
</package>