Difference between revisions of "SpywareBlaster"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(Removing all content from page)
m
 
Line 1: Line 1:
 +
This is a silent installer and uninstaller for [http://www.javacoolsoftware.com/spywareblaster.html SpywareBlaster].
  
 +
<source lang="xml">
 +
<?xml version="1.0" encoding="UTF-8"?>
 +
<packages>
 +
 +
<package
 +
id="spywareblaster"
 +
name="SpywareBlaster"
 +
revision="1"
 +
reboot="false"
 +
priority="0">
 +
 +
<check type="uninstall" condition="exists" path="Spyware Terminator" />
 +
 +
<install cmd='%SOFTWARE%\spywareblastersetup41.exe /VERYSILENT /SUPPRESSMSGBOXES /MERGETASKS="!desktopicon"' />
 +
 +
<upgrade cmd='%SOFTWARE%\spywareblastersetup41.exe /VERYSILENT /SUPPRESSMSGBOXES /MERGETASKS="!desktopicon"' />
 +
 +
<remove cmd='"%PROGRAMFILES%\SpywareBlaster\unins000.exe" /VERYSILENT' />
 +
 +
</package>
 +
</packages>
 +
</source>
 +
 +
There should be a way to configure and autorun the program, too.
 +
 +
[[Category: Silent Installers]]
 +
[[Category: Inno Setup]]

Latest revision as of 04:34, 27 March 2013

This is a silent installer and uninstaller for SpywareBlaster.

<?xml version="1.0" encoding="UTF-8"?>
<packages>

<package
id="spywareblaster"
name="SpywareBlaster"
revision="1"
reboot="false"
priority="0">

<check type="uninstall" condition="exists" path="Spyware Terminator" />

<install cmd='%SOFTWARE%\spywareblastersetup41.exe /VERYSILENT /SUPPRESSMSGBOXES /MERGETASKS="!desktopicon"' />

<upgrade cmd='%SOFTWARE%\spywareblastersetup41.exe /VERYSILENT /SUPPRESSMSGBOXES /MERGETASKS="!desktopicon"' />

<remove cmd='"%PROGRAMFILES%\SpywareBlaster\unins000.exe" /VERYSILENT' />

</package>
</packages>

There should be a way to configure and autorun the program, too.