Installation mit einen Response File

Setup und Komponenten-übergreifende Probleme.

Moderator: Moderatoren

roland12
Beiträge: 3
Registriert: Mi, 03.03.2004 10:19

Installation mit einen Response File

Beitrag von roland12 »

Hallo Zusammen

ich bräuchte mal euren Rat. Und zwar bin ich ein ziemlicher Neuling in Sachen OO. Das Ziel ist es eine OpenOffice Installation zu machen bei der alle Features enthalten sind bis auf dem Schnellstarter.

In der Response File Doku ist erwähnt das bei dieser Anforderung der
[Module_Specify] angepasst werden muss. Wenn ich dieses Response File benutzte sind außerdem die Verknüpfungen unter Programme->OpenOffice nicht zu sehen. (nur aus Vorlage,Doku öffnen)
Was mach ich falsch??

Grüsse und besten Dank in Vorraus...

Roland

[Environment]
InstallationMode=INSTALL_NORMAL
InstallationType=SPECIFY
DestinationPath=C:\Programme\OpenOffice
LANGUAGELIST=49
StartProcedure=MyStartProc
EndProcedure=MyStopProc
Migration=No

[Module_Specify]

mModuleSet2=gid_Module_Prg
InstallModuleset=mModuleSet2

[Java]
JavaSupport=preinstalled_or_none

[Procedures]
Sub MyStartProc
ShowSetup
SetUserCompanyName("Brodos AG")
MsgBox "Willkommen bei der OpenOffice Installation"
End Sub

Sub MyStopProc
ShowSetup
MsgBox " Installation abgeschlossen"
End Sub

[Windows_Desktop_Integration]
Register4MSWord=True
Register4MSExcel=True
Register4MSPowerPoint=True
RegisterAsDefaultHTMLEditor=True
roland12
Beiträge: 3
Registriert: Mi, 03.03.2004 10:19

Response File und die Lösung....

Beitrag von roland12 »

Habs jetzt heraus gefunden....und beantworte mir die Frage mal selbst :-)

Um OpenOffice mit einen Response File über spezielle Module zu installieren, muss man sich vorher die möglich Module anzeigen lassen.

mit setup.exe -sdump

danach habe ich im Response File unter dem Bereich [Module_Specify] die Module eingefügt.
Leider reicht es nicht wenn man z.B für Open Office Writer das Modul gid_Module_Prg_Wrt an gibt, da sonst nicht die enthaltenen Module
mit installiert werden.
Hier fehlt z.B auch dann das Modul gid_Module_Prg_Wrt_Bin das das Icon unter Programme anzeigen läßt.

Ich habe daher die Untermodule einzeln angegeben und damit klappts auch.
Auch wenn man mehrere InsatllModlueSet ´s angibt scheint das nicht zu klappen, daher habe ich alle Module in eine Zeile gepackt.

Das Schnellstarter Modul wurde absichtlich weggelassen.

[Environment]
InstallationMode=INSTALL_NORMAL
InstallationType=SPECIFY
DestinationPath=C:\Programme\OpenOffice
LANGUAGELIST=49
StartProcedure=MyStartProc
EndProcedure=MyStopProc
Migration=No

[Module_Specify]
oopaket=gid_Module_Root,gid_Module_Prg,gid_Module_Prg_Wrt,gid_Module_Prg_Wrt_Bin,gid_Module_Prg_Wrt_Help,gid_Module_Prg_Wrt_Temp,gid_Module_Prg_Calc,gid_Module_Prg_Calc_Bin,gid_Module_Prg_Calc_Help,gid_Module_Prg_Calc_Temp,gid_Module_Prg_Calc_Sample,gid_Module_Prg_Impress,gid_Module_Prg_Impress_Bin,gid_Module_Prg_Impress_Help,gid_Module_Prg_Impress_Temp,gid_Module_Prg_Impress_Sample,gid_Module_Prg_Draw,gid_Module_Prg_Draw_Bin,gid_Module_Prg_Draw_Help,gid_Module_Prg_Draw_Temp,gid_Module_Prg_Draw_Sample,gid_Module_Prg_Math,gid_Module_Prg_Math_Bin,gid_Module_Prg_Math_Help,gid_Module_Optional,gid_Module_Optional_Activexcontrol,gid_Module_Optional_Help,gid_Module_Optional_Help_Basic,gid_Module_Optional_Gallery,gid_Module_Optional_Testtool,gid_Module_Optional_Grfflt,gid_Module_Optional_Grfflt_Adobe,gid_Module_Optional_Grfflt_Tga,gid_Module_Optional_Grfflt_Eps,gid_Module_Optional_Grfflt_Xpm,gid_Module_Optional_Grfflt_Pbmp,gid_Module_Optional_Grfflt_Sunrst,gid_Module_Optional_Grfflt_Acad,gid_Module_Optional_Grfflt_Kodac,gid_Module_Optional_Grfflt_Macpict,gid_Module_Optional_Grfflt_Os2meta,gid_Module_Optional_Grfflt_Pcx,gid_Module_Optional_Grfflt_Tiff,gid_Module_Optional_Grfflt_Svg,gid_Module_Optional_Grfflt_Flash,gid_Module_Optional_Oo_English,gid_Module_Optional_Xsltfiltersamples,gid_Module_Optional_Javafilter,gid_Module_Optional_Javafilter_Palm,gid_Module_Optional_Javafilter_Palm_Aportisdoc,gid_Module_Optional_Javafilter_Pocketpc,gid_Module_Optional_Javafilter_Pocketpc_Pocket_Word,gid_Module_Optional_Javafilter_Palm_Aportisdoc,gid_Module_Optional_Javafilter_Pocketpc,gid_Module_Optional_Javafilter_Pocketpc_Pocket_Word,gid_Module_Optional_Javafilter_Pocketpc_Pocket_Excel,Gid_Module_Pyuno

InstallModuleSet = oopaket



[Java]
JavaSupport=preinstalled_or_none

[Procedures]
Sub MyStartProc
ShowSetup
SetUserCompanyName("Brodos AG")
End Sub

Sub MyStopProc
ShowSetup
MsgBox " Installation abgeschlossen"
End Sub

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


Gruß
Roland
Antworten