forked from saltstack/salt-winrepo-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
malwarebytes.sls
30 lines (30 loc) · 1.16 KB
/
malwarebytes.sls
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# just 32-bit x86 installer available
{% if grains['cpuarch'] == 'AMD64' %}
{% set PROGRAM_FILES = "%ProgramFiles(x86)%" %}
{% else %}
{% set PROGRAM_FILES = "%ProgramFiles%" %}
{% endif %}
# Source: http://www.malwarebytes.org
malwarebytes:
# {% for version in ['4.3.0.210'] %}
# '{{ version }}':
# full_name: 'Malwarebytes Anti-Malware version {{ version }}'
# installer: 'https://data-cdn.mbamupdates.com/web/mb4-setup-consumer/MBSetup.exe'
# install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'
# uninstaller: '{{ PROGRAM_FILES }}\Malwarebytes Anti-Malware\unins000.exe'
# uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'
# msiexec: False
# locale: en_US
# reboot: False
# {% endfor %}
#
'4.3.0.210':
full_name: 'Malwarebytes Anti-Malware version 4.3.0.210'
installer: 'https://data-cdn.mbamupdates.com/web/mb4-setup-consumer/MBSetup.exe'
install_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'
uninstaller: '{{ PROGRAM_FILES }}\Malwarebytes Anti-Malware\unins000.exe'
uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'
msiexec: False
locale: en_US
reboot: False
#