#region - Fast Explorer install script - (Nullsoft) #include <Common_Functions.au3> Opt('TrayIconDebug', 1) Break(False) ; Installer. $executable = 'Fast Explorer 2.1.8.280.exe' ; Default group folder in startmenu. $group = 'Fast Explorer 2006' ; Installation folder in Program Files. $directory = 'Fast Explorer' ; Run the installer. $pid = _Nullsoft() ProcessWaitClose($pid) ; Remove shortcuts. If _Programs('Fast Explorer 2006.lnk') Then FileMove($group & '\Fast Explorer 2006.lnk', 'Shell\Fast Explorer.lnk', 9) DirRemove($group, 1) EndIf Exit #endregion