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!!!
Open Office TTS
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.
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.
Re: Open Office TTS
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:
You can use the /passive switch instead of /quiet, which will show only progress info:
Looking at the commands you posted, it seem like you need this:
Code: Select all
%ToolsDir%\OpenOffice\openofficeorg23.msi /quiet /norestart
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
Fred
Re: Open Office TTS
Thanks Fred, Appreciate your response.