#region - SendToA3X install script - (Inno Setup)
#include <Common_Functions.au3>
Opt('TrayIconDebug', 1)
Break(False)

; Installer.
$executable = 'SendToA3X 1.4.exe'
; Default group folder in startmenu.
$group = 'Shell'
; Installation folder in Program Files.
$directory = 'SendToA3X'
; Components to install.
$components = ''
; Specify language.
$language = ''

; Run the installer.
$pid = _InnoSetup()
ProcessWaitClose($pid)

Exit
#endregion