Difference between revisions of "Ask Toolbar"
From WPKG | Open Source Software Deployment and Distribution
(Added upgrade section to cope with version number update in response to CutePDF upgrade) |
(Presumably only works with one version of Ask Toolbar) |
||
Line 9: | Line 9: | ||
priority="0" | priority="0" | ||
reboot="false"> | reboot="false"> | ||
− | + | <check type="logical" condition="not"> | |
<check type="uninstall" condition="exists" path="Ask Toolbar"/> | <check type="uninstall" condition="exists" path="Ask Toolbar"/> | ||
− | + | </check> | |
− | + | <install cmd="taskkill /F /IM Firefox.exe"> | |
− | < | + | |
<exit code="0" /> | <exit code="0" /> | ||
<exit code="128" /> | <exit code="128" /> | ||
<exit code="-1073741515" /> | <exit code="-1073741515" /> | ||
− | </ | + | </install> |
− | < | + | <install cmd="taskkill /F /IM iexplore.exe"> |
<exit code="0" /> | <exit code="0" /> | ||
<exit code="128" /> | <exit code="128" /> | ||
<exit code="-1073741515" /> | <exit code="-1073741515" /> | ||
− | </ | + | </install> |
− | < | + | <install cmd='msiexec /qn /norestart /x {86D4B82A-ABED-442A-BE86-96357B70F4FE}'> |
<exit code='0' /> | <exit code='0' /> | ||
<exit code='1605' /> | <exit code='1605' /> | ||
− | </ | + | </install> |
− | <upgrade | + | <upgrade include="install" /> |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
</package> | </package> |
Latest revision as of 20:33, 22 July 2013
This is a silent remover for the Ask Toolbar which is for exemple automatically installed with CutePDF Writer. You have to kill all web browser sessions to remove the toolbar successfully (Internet Explorer and Firefox are managed now). The upgrade section is in there for when CutePDF Writer is upgraded itself - remember to increment the revision number here in order to make this package run again.
<?xml version="1.0" encoding="UTF-8"?>
<packages>
<package id="asktoolbar"
name="Ask Toolbar"
revision="1"
priority="0"
reboot="false">
<check type="logical" condition="not">
<check type="uninstall" condition="exists" path="Ask Toolbar"/>
</check>
<install cmd="taskkill /F /IM Firefox.exe">
<exit code="0" />
<exit code="128" />
<exit code="-1073741515" />
</install>
<install cmd="taskkill /F /IM iexplore.exe">
<exit code="0" />
<exit code="128" />
<exit code="-1073741515" />
</install>
<install cmd='msiexec /qn /norestart /x {86D4B82A-ABED-442A-BE86-96357B70F4FE}'>
<exit code='0' />
<exit code='1605' />
</install>
<upgrade include="install" />
</package>
</packages>