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

; Installer.
$executable = 'Real Alternative Lite 1.50.exe'
; Default group folder in startmenu.
$group = 'Real Alternative'
; Installation folder in Program Files.
$directory = 'Real Alternative'
; Components to install.
$components = 'real,real\codec,real\codec\browser,real\directshow'
; Specify language.
$language = 'en'

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

; Remove shortcuts.
If _Programs('Configuration\RealMedia.lnk') Then
    DirRemove($group, 1)
EndIf

Exit
#endregion