Difference between revisions of "Wunderlist"
From WPKG | Open Source Software Deployment and Distribution
m |
|||
| Line 1: | Line 1: | ||
Wunderlist is an easy to use task management tool that enables you to keep track of to-do items, idea, appointment and anything else you want to remember. Wunderlist offers apps for Android, iPhone and Mac to synchronize your list items across multiple devices. Downloadable here [http://www.6wunderkinder.com/wunderlist/ http://www.6wunderkinder.com/wunderlist/] | Wunderlist is an easy to use task management tool that enables you to keep track of to-do items, idea, appointment and anything else you want to remember. Wunderlist offers apps for Android, iPhone and Mac to synchronize your list items across multiple devices. Downloadable here [http://www.6wunderkinder.com/wunderlist/ http://www.6wunderkinder.com/wunderlist/] | ||
| + | |||
| + | Download the wunderlist-setup.exe and install on your test system. In c:\programdata\package cache\{?????-???-???} (changes depending on version) take a copy of the MSI for your software deployment point. You can then use the usual msiexec command line switches. | ||
<source lang="xml"> | <source lang="xml"> | ||
| Line 8: | Line 10: | ||
reboot="false" | reboot="false" | ||
priority="2"> | priority="2"> | ||
| − | <variable name="version" value=" | + | <variable name="version" value="2.3.0.25" /> |
<check type="uninstall" condition="versionequalto" path="Wunderlist" value="%version%"/> | <check type="uninstall" condition="versionequalto" path="Wunderlist" value="%version%"/> | ||
| − | <install cmd='msiexec | + | <install cmd='msiexec /i %SOFTWARE%\wunderlist\Wunderlist.%version%.msi /qn ALLUSERS=1 '/> |
| − | <remove cmd='MsiExec.exe /X{ | + | <upgrade include='install' /> |
| + | <remove cmd='MsiExec.exe /X{D5CE5161-621F-411A-A225-6E7E3A13FCA6} /qn /norestart ' /> | ||
</package> | </package> | ||
</source> | </source> | ||
[[Category: Silent Installers]] | [[Category: Silent Installers]] | ||
Latest revision as of 09:10, 27 September 2013
Wunderlist is an easy to use task management tool that enables you to keep track of to-do items, idea, appointment and anything else you want to remember. Wunderlist offers apps for Android, iPhone and Mac to synchronize your list items across multiple devices. Downloadable here http://www.6wunderkinder.com/wunderlist/
Download the wunderlist-setup.exe and install on your test system. In c:\programdata\package cache\{?????-???-???} (changes depending on version) take a copy of the MSI for your software deployment point. You can then use the usual msiexec command line switches.
<package
id="wunderlist"
name="Wunderlist"
revision="%version%"
reboot="false"
priority="2">
<variable name="version" value="2.3.0.25" />
<check type="uninstall" condition="versionequalto" path="Wunderlist" value="%version%"/>
<install cmd='msiexec /i %SOFTWARE%\wunderlist\Wunderlist.%version%.msi /qn ALLUSERS=1 '/>
<upgrade include='install' />
<remove cmd='MsiExec.exe /X{D5CE5161-621F-411A-A225-6E7E3A13FCA6} /qn /norestart ' />
</package>