Difference between revisions of "Malwarebytes"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
(added installer switches to exclude icons)
Line 16: Line 16:
 
         <check type="uninstall" condition="exists" path="Malwarebytes' Anti-Malware" />
 
         <check type="uninstall" condition="exists" path="Malwarebytes' Anti-Malware" />
 
        
 
        
         <install cmd='%software%\mbam-setup.exe /verysilent /norestart /sp-' />
+
         <install cmd='%software%\mbam-setup.exe /VERYSILENT /NORESTART /LOG="%TEMP%\mbam.log" /MERGETASKS="!desktopicon" /NOICONS' />
         <install cmd='%COMSPEC% /c del /q "%AllUsersProfile%\Desktop\Malwarebytes&apos; Anti-Malware.lnk"' />
+
             
 +
         <upgrade include='install' />
 
        
 
        
         <upgrade cmd='%SOFTWARE%\mbam-setup.exe /verysilent /norestart /sp-' />
+
         <remove cmd='"%ProgramFiles%\Malwarebytes&apos; Anti-Malware\unins000.exe" /VERYSILENT /NORESTART /LOG="%TEMP%\mbam-unins.log"' />
        <upgrade cmd='%COMSPEC% /c del /q "%UserProfile%\Desktop\Malwarebytes&apos; Anti-Malware.lnk"' />
+
     
+
        <remove cmd='"%ProgramFiles%\Malwarebytes&apos; Anti-Malware\unins000.exe" /verysilent' />
+
 
     </package>  
 
     </package>  
 
</packages>
 
</packages>

Revision as of 15:59, 21 November 2012

This is a silent installer and uninstaller for Malwarebytes.

"Malwarebytes is a site dedicated to fighting malware. Malwarebytes has developed a variety of tools that can identify and remove malicious software from your computer. When your computer becomes infected, Malwarebytes can provide the needed assistance to remove the infection and restore the machine back to optimum performance." - Malwarebytes.org

Malwarebytes Homepage: http://malwarebytes.org/

 
<packages>
    <package
        id="malwarebytes"
        name="Malwarebytes"
        revision="1"
        reboot="false"
        priority="1">
       
        <check type="uninstall" condition="exists" path="Malwarebytes' Anti-Malware" />
       
        <install cmd='%software%\mbam-setup.exe /VERYSILENT /NORESTART /LOG="%TEMP%\mbam.log" /MERGETASKS="!desktopicon" /NOICONS' />
               
        <upgrade include='install' />
       
        <remove cmd='"%ProgramFiles%\Malwarebytes&apos; Anti-Malware\unins000.exe" /VERYSILENT /NORESTART /LOG="%TEMP%\mbam-unins.log"' />
    </package> 
</packages>