Open Office TTS

Post tutorials and script examples in this forum.
Forum rules
We have no special rules for UVK forums. Just try to be polite and clear in your posts.
Please don't post spam in this forum. Spammers will be banned by IP, e-mail and username.
We reserve the right to delete all posts and ban all users we consider not having respected these rules without warning.
Post Reply
wrc559
Posts: 118
Joined: Sun Mar 22, 2015 2:38 am
Location: Australia
Contact:

Open Office TTS

Post 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!!!
Fred
Site Admin
Posts: 2357
Joined: Sat Jul 30, 2011 12:05 pm
Location: Red coast, France
Contact:

Re: Open Office TTS

Post 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
One thing we humans have in common is that we are all different. So, if you think you're weird because you're different from everyone else, then we are all weird.

Fred
wrc559
Posts: 118
Joined: Sun Mar 22, 2015 2:38 am
Location: Australia
Contact:

Re: Open Office TTS

Post by wrc559 »

Thanks Fred, Appreciate your response.
Post Reply