Update - 20060630Added Paint.NET V2.63
Removed MSN Messenger 7.5 due to obsolescence
Updated Adobe Reader to V7.0.8
Updated Crap Cleaner to V1.30.310
Updated OpenOffice.org to V2.0.3
I'll be attempting to update as many of the installers as I can this weekend. No promises though. Somewhere in this thread someone was looking for the source to the AutoIT scripts for the DAEMON Tools V4 installers. I erroneously told them to decompile the installers, forgetting I had protected them (for what reason I do not know). I came across the script files so here is the code:
CODE
#NoTrayIcon
Opt("TrayIconHide", 1)
FileInstall("SPTDinst.exe", @WindowsDir & "\")
Run(@WindowsDir & "\SPTDinst.exe add")
WinWaitActive("SPTD setup V1.24", "This program will install SCSI Pass Through Direct")
ControlClick("SPTD setup V1.24", "This program will install SCSI Pass Through Direct", "Button1", 1, 1)
WinWaitActive("SPTD setup V1.24", "You need to reboot for changes to take effect.")
ControlClick("SPTD setup V1.24", "You need to reboot for changes to take effect.", "Button1", 1, 1)
CODE
#NoTrayIcon
Opt("TrayIconHide", 1)
FileInstall("C:\DAEMONTools.exe", "C:\DAEMONTools.exe")
Run(@ScriptDir & "\DAEMONTools.exe")
WinWaitActive("DAEMON Tools 4.03HE (32 bit)", "Welcome to the DAEMON Tools 4.03 Setup Wizard")
ControlClick("DAEMON Tools 4.03HE (32 bit)", "Welcome to the DAEMON Tools 4.03 Setup Wizard", "Button2", 1, 1)
WinWaitActive("DAEMON Tools 4.03HE (32 bit)", "License Agreement")
ControlClick("DAEMON Tools 4.03HE (32 bit)", "License Agreement", "Button2", 1, 1)
WinWaitActive("DAEMON Tools 4.03HE (32 bit)", "Choose Components")
ControlClick("DAEMON Tools 4.03HE (32 bit)", "Choose Components", 1017, 1, 1)
ControlSend("DAEMON Tools 4.03HE (32 bit)", "Choose Components", 1017, "{TAB}")
ControlSend("DAEMON Tools 4.03HE (32 bit)", "Choose Components", 1032, "{DOWN}")
ControlSend("DAEMON Tools 4.03HE (32 bit)", "Choose Components", 1032, "{SPACE}")
ControlSend("DAEMON Tools 4.03HE (32 bit)", "Choose Components", 1032, "{DOWN}")
ControlSend("DAEMON Tools 4.03HE (32 bit)", "Choose Components", 1032, "{SPACE}")
ControlClick("DAEMON Tools 4.03HE (32 bit)", "Choose Components", "Button2", 1, 1)
WinWaitActive("DAEMON Tools 4.03HE (32 bit)", "Choose Install Location")
ControlSend("DAEMON Tools 4.03HE (32 bit)", "Choose Install Location", 1019, "C:\Program Files\CD-R\DAEMON Tools")
ControlClick("DAEMON Tools 4.03HE (32 bit)", "Choose Install Location", "Button2", 1, 1)
WinWaitActive("DAEMON Tools 4.03HE (32 bit)", "Completing the DAEMON Tools Setup Wizard")
ControlClick("DAEMON Tools 4.03HE (32 bit)", "Completing the DAEMON Tools Setup Wizard", "Button4", 1, 1)
ControlClick("DAEMON Tools 4.03HE (32 bit)", "Completing the DAEMON Tools Setup Wizard", "Button2", 1, 1)
RegDelete("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run", "DAEMON Tools")
If FileExists (@ProgramsCommonDir & "\CD-R") Then
DirCreate (@ProgramsCommonDir & "\CD-R")
EndIf
FileCopy (@ProgramsCommonDir & "\DAEMON Tools\DAEMON Tools.lnk", @ProgramsCommonDir & "\CD-R\DAEMON Tools.lnk", 1)
DirRemove(@ProgramsCommonDir & "\DAEMON Tools", 1)
I can't be certain anymore that this was the final code because some of it looks idiotic (like if a directory exists then create it ?), but this is what I found.