Difference between revisions of "Ask Toolbar"
From WPKG | Open Source Software Deployment and Distribution
(Created page with '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…') |
(Changed priority to 0 from 499 so that it does its thing *after* CutePDF has been installed) |
||
Line 8: | Line 8: | ||
name="Ask Toolbar" | name="Ask Toolbar" | ||
revision="1" | revision="1" | ||
− | priority=" | + | priority="0" |
reboot="false"> | reboot="false"> | ||
Revision as of 13:59, 8 July 2011
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).
<?xml version="1.0" encoding="UTF-8"?>
<packages>
<package id="asktoolbar"
name="Ask Toolbar"
revision="1"
priority="0"
reboot="false">
<check type="uninstall" condition="exists" path="Ask Toolbar"/>
<!-- No install command - just a remover of the toolbar installed by CutePDF Writer -->
<remove cmd="taskkill /F /IM Firefox.exe">
<exit code="0" />
<exit code="128" />
<exit code="-1073741515" />
</remove>
<remove cmd="taskkill /F /IM iexplore.exe">
<exit code="0" />
<exit code="128" />
<exit code="-1073741515" />
</remove>
<remove cmd='msiexec /qn /norestart /x {86D4B82A-ABED-442A-BE86-96357B70F4FE}'>
<exit code='0' /><exit code='1605' />
</remove>
</package>
</packages>