forked from saltstack/salt-winrepo-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
autohotkey.sls
42 lines (42 loc) · 1.73 KB
/
autohotkey.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
31
32
33
34
35
36
37
38
39
40
41
42
{% if grains['cpuarch'] == 'AMD64' %}
{% set PROGRAM_FILES = "%ProgramFiles(x86)%" %}
{% else %}
{% set PROGRAM_FILES = "%ProgramFiles%" %}
{% endif %}
autohotkey:
'1.1.29.01':
full_name: 'AutoHotkey 1.1.29.01'
installer: 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe'
install_flags: '/S /U32 /D="{{ PROGRAM_FILES }}\AutoHotkey"'
uninstaller: '{{ PROGRAM_FILES }}\AutoHotKey\AutoHotKey.exe'
uninstall_flags: '"{{ PROGRAM_FILES }}\AutoHotkey\Installer.ahk" /Uninstall'
msiexec: False
locale: en_US
reboot: False
'1.1.27.06':
full_name: 'AutoHotkey 1.1.27.06'
installer: 'http://ahkscript.org/download/1.1/AutoHotkey112706_Install.exe'
install_flags: '/S /U32 /D="{{ PROGRAM_FILES }}\AutoHotkey"'
uninstaller: '{{ PROGRAM_FILES }}\AutoHotKey\AutoHotKey.exe'
uninstall_flags: '"{{ PROGRAM_FILES }}\AutoHotkey\Installer.ahk" /Uninstall'
msiexec: False
locale: en_US
reboot: False
'1.1.24.00':
full_name: 'AutoHotkey 1.1.24.00'
installer: 'http://ahkscript.org/download/1.1/AutoHotkey112400_Install.exe'
install_flags: '/S /U32 /D="{{ PROGRAM_FILES }}\AutoHotkey"'
uninstaller: '{{ PROGRAM_FILES }}\AutoHotKey\AutoHotKey.exe'
uninstall_flags: '"{{ PROGRAM_FILES }}\AutoHotkey\Installer.ahk" /Uninstall'
msiexec: False
locale: en_US
reboot: False
'1.1.22.09':
full_name: 'AutoHotkey 1.1.22.09'
installer: 'http://ahkscript.org/download/1.1/AutoHotkey112209_Install.exe'
install_flags: '/S /U32 /D="{{ PROGRAM_FILES }}\AutoHotkey"'
uninstaller: '{{ PROGRAM_FILES }}\AutoHotKey\AutoHotKey.exe'
uninstall_flags: '"{{ PROGRAM_FILES }}\AutoHotkey\Installer.ahk" /Uninstall'
msiexec: False
locale: en_US
reboot: False