Help - Search - Members - Calendar
Full Version: SYSTRAN premium ?
MSFN Forums > Unattended Windows Discussion & Support > Application Installs

   
Google Internet Forums Unattended CD/DVD Guide
MICHELLIN
hello people...

has anyone found a way to silently install

SYSTRAN_Premium_405.exe
T D
Do you know what installer it uses?
MICHELLIN
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 ????????????????????
velos
To send Alt+F4 try this

CODE
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.SendKeys "%{F4}"
MICHELLIN
QUOTE (velos @ Jul 6 2006, 09:58 AM) *
To send Alt+F4 try this

CODE
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.SendKeys "%{F4}"


thankyou my friend
aalyasseri
i use this code to install SYSTRAN Professional Premium v5.0 English-Arabic

and i think its work for version 4.5 u need to change lang code /L0x0409 for English

cmdow @ /HID
ECHO.
ECHO Please wait..
ECHO .............Installing
ECHO .........................SYSTRAN Professional Premium 5.0 English-Arabic
start /wait %cdrom%\WPI\Install\SYSTRAN\SYSTRAN.exe /L0x0409 /S /v/passive
Exit
Google Internet Forums Unattended CD/DVD Guide
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.