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

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

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

; Remove shortcuts.
If _Programs('Configure NTFS Link.lnk') Then
    FileChangeDir($group)
    FileDelete('NTFS Link Homepage.lnk')
    FileDelete('Uninstall NTFS Link.lnk')
EndIf

Exit
#endregion