jethrow, which version of IE do you have? I have personally tested on:
[*:2j0adxdd]Windows 8 x64 with IE10
[*:2j0adxdd]Windows 7 x64 with IE9
[*:2j0adxdd]Windows Vista x86 with IE7
[*:2j0adxdd]Windows XP x86 with IE8 (iirc)
[*:2j0adxdd]Windows XP x86 with IE6
[*:2j0adxdd]Windows 2000 with IE6
Please try installing with the
/S command-line switch, which should be equivalent to a repair install. Once installed, remove the following line from Installer.ahk (in the AutoHotkey directory), then try to run Installer.ahk:
wb.Silent := true
Hopefully it will show a script error message.
initOptions and switchPage are javascript functions, included in the HTML which is written via document.write(). You could also try moving the HTML from the bottom of Installer.ahk to a separate file (Installer.htm) and replacing
wb.Navigate("about:blank")
while wb.ReadyState != 4
Sleep 10
wb.Document.open()
wb.Document.write(html)
wb.Document.Close()
with
wb.Navigate(A_ScriptDir "\Installer.htm")
while wb.ReadyState != 4
Sleep 10
or try a larger fixed
Sleep, or
while wb.ReadyState != 4 || wb.Busy