QUOTE (T D @ Jul 5 2006, 12:24 AM)

Do you know what installer it uses?
yes i do actually
VISE installer
i managed an unattended install using a script which simulates keystrokes...
i saw this type of script in this forum a couple of days ago
it was made for AD-AWARE. (credit goes to --=ddSHADOW=--he's done a fine job)
==================================
i modified it (it took me some time to get the timing right)
SYSTRAN.vbs
----------------
CODE
Set WshShell = WScript.CreateObject("WScript.Shell")
'To Simulate Keystrokes
WshShell.Run app & "%systemdrive%\install\systran\SYSTRAN_Premium_405.exe"
WScript.Sleep 5000
WshShell.SendKeys "{ENTER}"
WScript.Sleep 5000
WshShell.SendKeys "{ENTER}"
WScript.Sleep 500
WshShell.SendKeys "{TAB}"
WScript.Sleep 500
WshShell.SendKeys "{TAB}"
WScript.Sleep 500
WshShell.SendKeys "{TAB}"
WScript.Sleep 500
WshShell.SendKeys "{ENTER}"
WScript.Sleep 500
WshShell.SendKeys "<YOUR NAME>"
WScript.Sleep 500
WshShell.SendKeys "{TAB}"
WScript.Sleep 500
WshShell.SendKeys "<YOUR ORGANIZATION>"
WScript.Sleep 500
WshShell.SendKeys "{TAB}"
WScript.Sleep 500
WshShell.SendKeys "<YOUR SERIAL>"
WScript.Sleep 500
WshShell.SendKeys "{TAB}"
WScript.Sleep 500
WshShell.SendKeys "{ENTER}"
WScript.Sleep 500
WshShell.SendKeys "{ENTER}"
WScript.Sleep 52000
WshShell.SendKeys "{ENTER}"
WScript.Sleep 500
WshShell.SendKeys "{TAB}"
WScript.Sleep 500
WshShell.SendKeys "{ENTER}"
WScript.quit
and this is the code in ...
START.cmd
--------------
CODE
ECHO.
ECHO INSTALLING..... SYSTRAN 4.0.5 premium
start /wait %systemdrive%\install\systran\SYSTRAN.vbs
-----------------------------------------------------------------
It's pretty slow but it does the job
i do have a problem though..!!!!
after the end of the installation three windows pop up and show me where SYSTRAN put
all its files.
I could enter three more keystrokes to the script but I couldn't find what to use for ALT+F4
ANYBODY know ????????????????????