[Solved] Silent Installation, don't want registration window

Issues with installing under all versions of MS Windows
Post Reply
ehayut
Posts: 3
Joined: Tue Jan 22, 2008 11:48 pm

[Solved] Silent Installation, don't want registration window

Post by ehayut »

I am doing an openoffice.org silent installation. After the installation, I automatically copy a macro (used to convert docs to PDF) to C:\Documents and Settings\username\Application data\Open Office

The problem that I am encountering is that when I run this macro for the first time, the openoffice.org registration screen appears. I want to avoid this, as I do not want anyone to know that openoffice is being used for my conversions to pdf. Is there any way to not install the registration screen when doing a silent installation? Or, alternately, is there any way to run my macro without having the registration screen appear?

Here is my silent installation command:

Code: Select all

setup -qn SELECT_WORD=0 SELECT_EXCEL=0 SELECT_POWERPOINT=0 COMPANYNAME="Global Vision Inc." USERNAME="Test" INSTALLLOCATION="C:\Program Files\Global Vision\Rev 2\Converter" ADDLOCAL=gm_Root,gm_Prg,gm_r_Files_2,gm_r_Files_3,gm_r_Files_4,gm_r_Files_5,gm_r_Files_6,gm_r_Files_7,gm_r_Files_8,gm_r_Files_9,gm_r_Fonts_OOo_Hidden,gm_p_Wrt,gm_p_Wrt_Bin
Here is my macro:

Code: Select all

soffice.exe macro:///Standard.Module1.ConvertWordToPDF(C:\a.doc)

Thanks!!
Last edited by ehayut on Wed Jan 23, 2008 3:32 pm, edited 1 time in total.
hol.sten
Volunteer
Posts: 495
Joined: Mon Oct 08, 2007 1:31 am
Location: Hamburg, Germany

Re: Silent Installation - don't want registration window

Post by hol.sten »

ehayut wrote:is there any way to run my macro without having the registration screen appear?
Yes. Add -nofirststartwizard to the start options of your OOo command.

It should look like this then:

Code: Select all

soffice.exe -nofirststartwizard macro:///Standard.Module1.ConvertWordToPDF(C:\a.doc)
OOo 3.2.0 on Ubuntu 10.04 • OOo 3.2.1 on Windows 7 64-bit and MS Windows XP
User avatar
Hagar Delest
Moderator
Posts: 33394
Joined: Sun Oct 07, 2007 9:07 pm
Location: France

Re: Silent Installation - don't want registration window

Post by Hagar Delest »

Does it also help: [Solved] Welcome to Open Office screen?

Thanks to add '[Solved]' in your first post title (edit button) if your issue has been fixed.
LibreOffice 25.2 on Linux Mint Debian Edition (LMDE Faye) and 24.8 portable on Windows 11.
ehayut
Posts: 3
Joined: Tue Jan 22, 2008 11:48 pm

Re: Silent Installation - don't want registration window

Post by ehayut »

That worked great. one more question - I am still getting the openoffice.org splash screen. Is there any way to hide this? I've looked for documentation on this, but i can't find any.

thanks again
 Edit: Found the command. It is -nologo 
Post Reply