MSFN Forum: openoffice install problem - MSFN Forum

Jump to content



Unattended CD/DVD Guide Homepage · MSFN Forum Rules

Welcome to the Applications Installs forum. Make sure you read the forum rules before you start posting.

Links/Requests to warez and/or any illegal material (porn, cracks, serials, etc..) will not be tolerated. Discussion of circumventing WGA/activation/timebombs/keygens or any other illegal activity will also not be tolerated.

We try our best to keep this forum clean of illegal content. If you see any illegal activity use the "report" button you find in every post to report the specific post to the moderators. If you ignore any of the rules you will be banned without notice.

Read Forum Rules
Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

openoffice install problem Rate Topic: -----

#1 User is offline   Floppy 

  • Member
  • PipPip
  • Group: Members
  • Posts: 124
  • Joined: 06-August 04

Posted 11 December 2004 - 08:27 AM

I have this:
setup.exe -r:c:\install\openoffice\setup.txt -debug.
I have made a setup.txt file.
But during instal it respond "can not find response file"

Why, anyone having problem testing this on VM?


#2 User is offline   MCT 

  • MSFN Junkie
  • PipPipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 3,288
  • Joined: 19-May 04

Posted 11 December 2004 - 10:07 AM

it worked 4 me b4, search the forum, its been discussed

#3 User is offline   1chaoticadult 

  • A Part of a Dying Breed...
  • PipPipPipPip
  • Group: Members
  • Posts: 669
  • Joined: 31-August 03

Posted 11 December 2004 - 03:00 PM

@MCT
Man people just don't see the word search next to the hourglass on the top of page. This is getting repetitive. :P

This post has been edited by drthawhizkid: 11 December 2004 - 03:01 PM


#4 User is offline   Floppy 

  • Member
  • PipPip
  • Group: Members
  • Posts: 124
  • Joined: 06-August 04

  Posted 11 December 2004 - 05:09 PM

The point is that I have this in my setup.txt file;
[Environment]
InstallationMode=INSTALL_NORMAL
DestinationPath=C:\Programfiler\OpenOffice
EndProcedure=PostSetup

[Java]
JavaSupport=preinstalled_or_none

[Windows_Desktop_Integration]
Register4MSWord=True
Register4MSExcel=True
Register4MSPowerPoint=True
RegisterAsDefaultHTMLEditor=True

[Procedures]
Sub PostSetup
SetReboot( False )
End Sub


and this in my start.cmd;
setup.exe -r:c:\install\openoffice\setup.txt -debug

And the respons during install is;

""Can not find setup.txt ""

I have looked in the forums, but I can't find a solution....

So if somody has a solution or see a error in my setup, it would be fine!

#5 User is offline   zorro1 

  • Junior
  • Pip
  • Group: Members
  • Posts: 81
  • Joined: 02-November 03

Posted 12 December 2004 - 05:37 AM

Try this work for me

[Environment]
InstallationMode=INSTALL_NORMAL
Installationtype=STANDARD
DestinationPath=C:\Program files\OpenOffice
EndProcedure=PostSetup

[Java]
JavaSupport=preinstalled_or_none

[Windows_Desktop_Integration]
RegisterForMSWord=YES
RegisterForMSExcel=YES
RegisterForMSPowerPoint=YES
RegisterAsDefaultHTMLEditor=YES

[Procedures]
Sub PostSetup
SetReboot( False )
End Sub

#6 User is offline   Acheron 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 915
  • Joined: 28-June 04

Posted 12 December 2004 - 06:48 AM

You don't have to specify a hardcoded path to the openoffice dir in your response.txt file:

I use this one:

install.cmd
cmdow @ /HID
start autoit3.exe openoffice.au3
setup.exe -d "%programfiles%\OpenOffice" -r response.txt -noexit
md "%programfiles%\OpenOffice\share\registry\data\org\openoffice\Office"
copy /Y "%cdrom%install\OpenOffice\*.xcu"  "%programfiles%\OpenOffice\share\registry\data\org\openoffice\Office"
del /f /q "%userprofile%\Menu Start\Programma's\Opstarten\OpenOffice.org 1.1.3.lnk"
EXIT


response.txt
[Environment]
InstallationMode=INSTALL_NORMAL
InstallationType=STANDARD
StartProcedure=StartSetup
EndProcedure = PostSetup

[Windows_Desktop_Integration]
Register4MsWord=No
Register4MsExcel=No
Register4MsPowerPoint=No
RegisterAsDefaultHtmlEditor=Yes 

[Java]
JavaSupport=preinstalled_or_none

[Procedures]
Sub StartSetup
ShowSetup()
End Sub

Sub PostSetup
SetReboot( False )
End Sub


The AutoIt3 script is for some JAva-error I get with my nLited CD
OpenOffice.au3
AutoItSetOption("WinTitleMatchMode", 4)
WinWaitActive("classname=SALFRAME")
Send("{ENTER}")


The StartSetup procedure shows the cool progress bar.

#7 User is offline   Floppy 

  • Member
  • PipPip
  • Group: Members
  • Posts: 124
  • Joined: 06-August 04

Posted 12 December 2004 - 01:46 PM

:blushing: My error was that the setup.txt file was named setup.txt.txt,
but now it's workng

Thanks for your responds!! :thumbup

#8 User is offline   c_tophe 

  • Group: Members
  • Posts: 3
  • Joined: 09-March 05

Posted 08 September 2005 - 11:41 AM

Hi

I have a problem during the installation too.

With this command :
setup.exe -r:c:\reponse.txt -debug

The install returns ExitCode:21 Invalid destination path.

Here is my response.txt :
[Environment]
InstallationMode=INSTALL_NORMAL
InstallationType=STANDARD
DestinationPath=C:\
StartProcedure=MyStartProc
EndProcedure = MyEndProc

[Windows_Desktop_Integration]
Register4MsWord=Yes
Register4MsExcel=Yes
Register4MsPowerPoint=Yes
RegisterAsDefaultHtmlEditor=No

[Java]
JavaSupport = preinstalled_or_none

[Procedures]
Sub PostSetup
SetReboot( False )
End Sub
HideSetup


I have tried with different installation path (D:\, C:\Progam File\) but the error is the same

I have deleted the Destination Path entry in response.txt and tried with:

setup.exe -d "C:\OpenOffice" -r response.txt

but the installation is stopped with no error code.

I 'm working with Windows XP SP2 and previous install of OOo has been removed

Someone can help me ?

#9 User is offline   c_tophe 

  • Group: Members
  • Posts: 3
  • Joined: 09-March 05

Posted 13 September 2005 - 06:08 PM

up :-)

Share this topic:


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2011 msfn.org
Privacy Policy