I've made an autoit script for Everest Pro, not sure if it will work with everest home.
As long as the Title contains the string "Setup - EVEREST", it should work fine. But this may not be the case if the install screens are different in home then they are pro. As in menu order, etc... Heres the autoit code, and i've upped the exe
Oh yeah, your gonna have to rename your setup exe to "everestpro110.exe" so the script can run it, sorry :-/
I can change it if you really need it
CODE
; ----------------------------------------------------------------------------
;
; AutoIt Version: 3.0
; Language: English
; Platform: WinXP
; Author: AleXz
;
; Script Function:
; Everest Pro Install
;
; ----------------------------------------------------------------------------
; ----------------------------------------------------------------------------
; Set up our defaults
; ----------------------------------------------------------------------------
AutoItSetOption("TrayIconDebug", 1)
AutoItSetOption("WinTitleMatchMode", 2)
; ----------------------------------------------------------------------------
; Script Start
; ----------------------------------------------------------------------------
Run("everestpro110.exe")
WinWaitActive("Setup", "This will install EVEREST Professional. Do you wish to continue?")
Send("Y")
WinWaitActive("Setup - EVEREST")
Send("{TAB}" & "N")
WinWaitActive("Setup - EVEREST", "License")
Send("{TAB}" & "A" & "N")
WinWaitActive("Setup - EVEREST", "SelectDir")
Send("C:\Program Files\EVEREST" & "{TAB}" & "{TAB}" & "{TAB}")
Send("N")
WinWaitActive("Setup - EVEREST", "SelectProgramGroup")
Send("_Utilities\EVEREST Pro" & "{TAB}" & "{TAB}")
Send("N")
WinWaitActive("Setup - EVEREST", "SelectTasks")
Send("{SPACE}" & "N")
WinWaitActive("Setup - EVEREST", "Ready")
Send("I")
WinWaitActive("Setup - EVEREST", "Launch EVEREST Professional")
Send("{SPACE}" & "F")