#region - Xml Notepad 2007 install script - (MSI)
#include <Common_Functions.au3>
Opt('TrayIconDebug', 1)
Break(False)

; Installer.
$msi = 'Xml Notepad 2007.msi'
; Default group folder in startmenu.
$group = 'XML Notepad 2007'

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

; Remove shortcuts.
If _Programs('XML Notepad 2007.lnk') Then
    FileMove($group & '\XML Notepad 2007.lnk', 'Editors\', 9)
    DirRemove($group, 1)
EndIf

_Desktop('XML Notepad 2007.lnk')
_QuickLaunch('?.lnk')

Exit
#endregion