forked from saltstack/salt-winrepo-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
autohotkey.sls
24 lines (24 loc) · 970 Bytes
/
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
{% if grains['cpuarch'] == 'AMD64' %}
{% set PROGRAM_FILES = "%ProgramFiles(x86)%" %}
{% else %}
{% set PROGRAM_FILES = "%ProgramFiles%" %}
{% endif %}
autohotkey:
'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