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

; Installer.
$executable = 'lccwin32.exe'
; Default group folder in startmenu.
$group = 'Development'
; Installation folder in Program Files.
$directory = 'lcc'
; Components to install.
$components = ''
; Specify language.
$language = ''

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

; Remove shortcuts.
If _Programs('?.lnk') Then
    FileDelete('?.lnk')
    FileDelete('?.lnk')
    FileDelete('?.lnk')
    FileDelete('?.lnk')
    FileDelete('?.lnk')
EndIf
_Desktop('?.lnk')
_QuickLaunch('?.lnk')

Exit
#endregion