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

; Installer.
$executable = 'Icon Snatcher 3.6.1.exe'
; Default group folder in startmenu.
$group = 'General'
; Installation folder in Program Files.
$directory = 'Icon Snatcher'
; Components to install.
$components = ''
; Specify language.
$language = 'default'

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

Exit
#endregion