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

; Installer.
$executable = 'DVDDecrypter 3.5.4.0.exe'
; Default group folder in startmenu.
$group = 'DVD Decrypter'
; Installation folder in Program Files.
$directory = 'DVD Decrypter'

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

; Remove shortcuts.
If _Programs('DVD Decrypter.lnk') Then
    FileMove($group & '\DVD Decrypter.lnk', 'Audio-Video\', 9)
    DirRemove($group, 1)
EndIf
_Desktop('DVD Decrypter.lnk')
_QuickLaunch('DVD Decrypter.lnk')

Exit
#endregion