Page 1 of 1

Open Office TTS

Posted: Thu Sep 17, 2015 10:32 am
by wrc559
Sorry about my silliness.

I am trying to get OpenOffice to perform an automatic install.

I tried pasting this as one of the commands in TTS.
start /wait msiexec /qn /norestart /i openofficeorg23.msi

Also a modified version.
%ToolsDir%\OpenOffice /norestart /qn /i

but couldn't get my head around it.
Sorry!!!

Re: Open Office TTS

Posted: Thu Sep 17, 2015 10:53 am
by Fred
WRC, the best way to insert the path of the files to run is to use the Browse button, or simply drag the file to execute to the text input. Then you just need to append the extra parameters.

Looking at the commands you posted, it seem like you need this:

Code: Select all

%ToolsDir%\OpenOffice\openofficeorg23.msi /quiet /norestart
You can use the /passive switch instead of /quiet, which will show only progress info:

Code: Select all

%ToolsDir%\OpenOffice\openofficeorg23.msi /passive /norestart

Re: Open Office TTS

Posted: Sun Sep 20, 2015 4:43 am
by wrc559
Thanks Fred, Appreciate your response.