#region - IE7Pro install script - (Inno Setup) #include <Common_Functions.au3> Opt('TrayIconDebug', 1) Break(False) ; Installer. $executable = 'IE7Pro 0.9.14.exe' ; Default group folder in startmenu. $group = 'IE7Pro' ; Installation folder in Program Files. $directory = 'IE7Pro' ; Components to install. $components = '' ; Specify language. $language = 'en' ; Run the installer. $pid = _InnoSetup() ProcessWaitClose($pid) ; Remove shortcuts. If _Programs('?.lnk') Then FileDelete('?.lnk') FileDelete('?.lnk') FileDelete('?.lnk') FileDelete('?.lnk') FileDelete('?.lnk') EndIf _Desktop('?.lnk') _QuickLaunch('?.lnk') Exit #endregion