QUOTE (cstefanyshin @ Dec 19 2007, 12:41 AM)

Same as me. What switches are you using for setup to install without prompting?
Thx,
Chrissy
Extract the original installer with WinRAR.
Edit the next AutoIt script with your information, compile it and place the compiled script in the extraction folder...
CODE
#cs ----------------------------------------------------------------------------
AutoIt Version: 3.2.10.0
Author: myName
InterVideo XPack (DVD and MP3) 2.1.13.0
Script Function:
Template AutoIt script.
Extract the original installer with WinRAR and place the compiled script in the extraction folder...
#ce ----------------------------------------------------------------------------
; Script Start - Add your code below here
Opt("TrayIconDebug", 1)
Opt("SendKeyDelay", 200)
; Executable file name
$EXECUTABLE = "Setup.exe"
; Email Address (used to login to your InterVideo account)
$Email = ""
; Password (used to login to your InterVideo account)
$Password = ""
; License Key (From purchase confirmation email)
$LicenseKey = ""
; Last 4 digits from credit card used to purchase product
$DigitCode = ""
; Installation folder
$INSTALLLOCATION = @ProgramFilesDir & "\InterVideo\XPack"
If FileExists($INSTALLLOCATION & "\InterVideoXPackSetup.exe") Then
MsgBox(0x40010, @ScriptName, "Please uninstall previous version of InterVideo XPack (DVD and MP3) before using this script", 4)
Exit
EndIf
; Run the installer
Run($EXECUTABLE)
; The XPack setup has detected another DVD decoder installed on your system. It is recommended that you uninstall the existing DVD decoder before continuing with the XPack setup. Would you like to continue with this installation?
If WinExists("Question", "The XPack setup has detected another DVD decoder installed on your system. It is recommended that you uninstall the existing DVD decoder before continuing with the XPack setup. Would you like to continue with this installation?") Then
WinWaitActive("Question", "The XPack setup has detected another DVD decoder installed on your system. It is recommended that you uninstall the existing DVD decoder before continuing with the XPack setup. Would you like to continue with this installation?")
Sleep(1500)
ControlClick("Question", "", "Button1")
EndIf
; Welcome to MP3 + DVD XPack Setup
WinWaitActive("InterVideo MP3 + DVD XPack", "Welcome to MP3 + DVD XPack Setup")
ControlClick("InterVideo MP3 + DVD XPack", "", "Button1")
; License Agreement
WinWaitActive("InterVideo MP3 + DVD XPack", "License Agreement")
ControlClick("InterVideo MP3 + DVD XPack", "", "Button2")
; Please complete the licensing information below.
WinWaitActive("License Activation", "Please complete the licensing information below.")
ControlSetText("License Activation", "", "Edit1", "")
Sleep(1000)
ControlSetText("License Activation", "", "Edit1", $Email)
ControlSetText("License Activation", "", "Edit2", "")
Sleep(1000)
ControlSetText("License Activation", "", "Edit2", $Password)
ControlSetText("License Activation", "", "Edit3", "")
Sleep(1000)
ControlSetText("License Activation", "", "Edit3", $LicenseKey)
ControlSetText("License Activation", "", "Edit4", "")
Sleep(1000)
ControlSetText("License Activation", "", "Edit4", $DigitCode)
ControlClick("License Activation", "", "Button1")
; Setup Complete
WinWaitActive("InterVideo MP3 + DVD XPack", "Setup Complete")
Sleep(500)
Send("{ENTER}")
; Setup has finished installing MP3 + DVD XPack on your computer
WinWaitActive("InterVideo MP3 + DVD XPack", "Setup has finished installing MP3 + DVD XPack on your computer")
Sleep(500)
Send("{ENTER}")
; Use the vertical sliders to assign the recording (encoding)
WinWait("InterVideo XPack Options", "Use the vertical sliders to assign the recording (encoding)")
WinClose("InterVideo XPack Options", "Use the vertical sliders to assign the recording (encoding)")