[GELÖST] Thunderbird und Firefox ESR
Verfasst: 22 Nov 2012, 12:19
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...
Gruß
Dennis
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