[GELÖST] Thunderbird und Firefox ESR

Antworten
donpro10
Beiträge: 9
Registriert: 25 Okt 2012, 17:21

[GELÖST] Thunderbird und Firefox ESR

Beitrag von donpro10 »

Hallo zusammen,

mein Problem besteht darin, dass ich im "Opsi Configuration Editor" beim Thunderbird und Firefox immer den Installationsstand auf "unknown" und den Report auf "failed(setup)" habe. Ich verstehe allerdings nicht warum, da Thunderbird und Firefox einwandfrei auf dem Rechner installiert werden.

Kann mir diesbezüglich jemand weiterhelfen?

Hier mal meine Setup.ins...

Code: Alles auswählen

[Actions]
requiredWinstVersion >= "4.10.8.6"
 
DefVar $MsiId32$
DefVar $UninstallProgram32$
DefVar $MsiId64$
DefVar $UninstallProgram64$
DefVar $LogDir$
DefVar $ProductCat$ 
DefVar $ProductId$  
DefVar $ProductVersion$
DefVar $AllUsersDesktopLink$
DefVar $AllUsersStartMenuDir$
DefVar $MinimumSpace$
DefVar $InstallDir32$
DefVar $InstallDir64$
DefVar $ExitCode$
DefVar $LicenseRequired$
DefVar $LicenseKey$
DefVar $LicensePool$
DefVar $INST_SystemType$
DefVar $INST_architecture$
 
Set $INST_SystemType$ = GetSystemType
set $INST_architecture$ = GetProductProperty("install_architecture","system specific")
 
 
Set $LogDir$ = "%SystemDrive%\tmp"
Set $ProductId$       = "Firefox"
Set $AllUsersDesktopLink$ = "Mozilla Firefox"
Set $AllUsersStartMenuDir$ = "Mozilla Firefox"
Set $MinimumSpace$    = "50 MB"
; the path were we find the product after the installation
Set $InstallDir32$      = "%ProgramFiles32Dir%\Mozilla Firefox"
Set $InstallDir64$      = "%ProgramFiles32Dir%\Mozilla Firefox"
Set $LicenseRequired$ = "false"
Set $LicensePool$     = "p_" + $ProductId$
; ----------------------------------------------------------------
 
if not(HasMinimumSpace ("%SystemDrive%", $MinimumSpace$))
	LogError "Not enough space on %SystemDrive%, " + $MinimumSpace$ + " on drive %SystemDrive% needed for " + $ProductId$
	isFatalError
	; Stop process and set installation status to failed
else
	comment "Show product picture"
	ShowBitmap "%ScriptPath%\firefox.jpg" $ProductId$ + " " + $ProductVersion$
 
	if FileExists("%ScriptPath%\delsub.ins")
		comment "Start uninstall sub section"
		Sub "%ScriptPath%\delsub.ins"
	endif
 
	comment "installing"
 
	if (($INST_SystemType$ = "x86 System") and ($INST_architecture$ = "system specific")) or ($INST_architecture$ = "both") or ($INST_architecture$ = "32 only")
		Message "Installiere Mozilla Firefox 32 Bit"
		comment "Start setup program"
		Winbatch_install_32
		comment "Copy files"
		Files_install_32 /32Bit
	endif
 
	if ($INST_SystemType$ = "64 Bit System") and (($INST_architecture$ = "system specific") or ($INST_architecture$ = "both") or ($INST_architecture$ = "64 only"))
		Message "Installiere Mozilla Firefox 64 Bit"
		comment "Start setup program"
		Winbatch_install_64
		comment "Copy files"
		Files_install_64 /64Bit
	endif
 
endif
 
[Winbatch_install_32]
 
"%ScriptPath%\Firefox Setup 10.0.11esr.exe" -ms

 
 
[Files_install_32]
copy -s "%scriptpath%\firefox-profile\*" "$InstallDir32$\defaults\profile\."
 
[Winbatch_install_64]
 
"%ScriptPath%\Firefox Setup 10.0.11esr.exe" -ms


[Files_install_64]
copy -s "%scriptpath%\firefox-profile\*" "$InstallDir64$\defaults\profile\."

Gruß
Dennis
Zuletzt geändert von donpro10 am 22 Nov 2012, 14:30, insgesamt 1-mal geändert.
Benutzeravatar
tobias
Beiträge: 1294
Registriert: 20 Aug 2008, 12:36
Wohnort: Braunschweig
Kontaktdaten:

Re: Thunderbird und Firefox ESR

Beitrag von tobias »

die inst.log bitte ;)
donpro10
Beiträge: 9
Registriert: 25 Okt 2012, 17:21

Re: Thunderbird und Firefox ESR

Beitrag von donpro10 »

Problem gefunden :)

Danke für den Schubser in die richtige Richtung ;) Hätte allerdings auch selber drauf kommen müssen das ärgert mich jetzt schon :evil: :evil: :evil: :evil:

Folgender Fehler:

Code: Alles auswählen

Script  y:\install\firefox\update.ins  not found File Err. No. 2 (The system cannot find the file specified.<) - giving up
Error level set to fatal
Benutzeravatar
tobias
Beiträge: 1294
Registriert: 20 Aug 2008, 12:36
Wohnort: Braunschweig
Kontaktdaten:

Re: Thunderbird und Firefox ESR

Beitrag von tobias »

hihi ich dachte mir schon etwas in die Richtung. Das passierte mir auch schon oft :mrgreen:

Magst den Thread als GELÖST markieren?
staybb
Beiträge: 90
Registriert: 04 Jan 2012, 10:23

Re: [GELÖST] Thunderbird und Firefox ESR

Beitrag von staybb »

Was hast du dann gemacht ?

Eine update.ins erstellt? Aber diese wird doch für die Installation garnicht benötigt, warum schreibt er die rein bei der normalen installation (inst.ins)
Benutzeravatar
tobias
Beiträge: 1294
Registriert: 20 Aug 2008, 12:36
Wohnort: Braunschweig
Kontaktdaten:

Re: [GELÖST] Thunderbird und Firefox ESR

Beitrag von tobias »

die sucht der nur wenn man beim erstellen das pakets eine angegeben hat. Wenn man die los werden will einfach aus der control die update.ins entfernen und neu paketieren.


Gruß
Tobias
donpro10
Beiträge: 9
Registriert: 25 Okt 2012, 17:21

Re: [GELÖST] Thunderbird und Firefox ESR

Beitrag von donpro10 »

Ja genau und ich habe die beim erstellen des Paketes angegeben und deswegen habe ich auch immer einen Fehler gehabt ;)


Gruß
staybb
Beiträge: 90
Registriert: 04 Jan 2012, 10:23

Re: [GELÖST] Thunderbird und Firefox ESR

Beitrag von staybb »

Achsooo ok dann macht es sinn danke :)
Antworten