forked from saltstack/salt-winrepo-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cdroller.sls
25 lines (25 loc) · 912 Bytes
/
cdroller.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
# just 32-bit x86 installer available
{% if grains['cpuarch'] == 'AMD64' %}
{% set PROGRAM_FILES = "%PROGRAMFILES(x86)%" %}
{% else %}
{% set PROGRAM_FILES = "%PROGRAMFILES%" %}
{% endif %}
cdroller:
'10.0':
full_name: 'CDRoller version 10.0'
installer: 'http://cdroller.fileburst.com/CDRoller10_en.exe'
install_flags: '/VERYSILENT /MERGETASKS="set_edr_mode,cdroller_desktopicon,manual_desktopicon,quickref_desktopicon"'
uninstaller: '{{ PROGRAM_FILES }}\CDRoller\unins000.exe'
uninstall_flags: '/VERYSILENT'
msiexec: False
locale: en_US
reboot: False
'9.70':
full_name: 'CDRoller'
installer: 'http://cdroller.fileburst.com/CDRoller970_silent.exe'
install_flags: ' /verysilent /tasks="set_edr_mode"'
uninstaller: '{{ PROGRAM_FILES }}\CDRoller 9.70\unins000.exe'
uninstall_flags: '/verysilent'
msiexec: False
locale: en_US
reboot: False