Lotus Notes
Lotus Notes
I tried with differents clients, 3 differents xp clients and allways the same, even i have tried from another opsi server and again same problem.
But if i tried that silent install in a windows 7 client, it works perfectly, same script setup.ins for both.
[Initial]
ExitOnError=true
StayOnTop = true
[Actions]
requiredWinstVersion >= "4.10.5"
DefVar $ProductId$
DefVar $ExitCode$
DefVar $installfile$
DefVar $Parameter$
SetLogLevel=6
Set $installfile$ = "notes.msi"
; ----------------------------------------------------------------
Set $ProductId$ = "Lotus Notes 8.5.3"
; ----------------------------------------------------------------
Message "Installiert " + $ProductId$ + " ..."
if not (HasMinimumSpace ("%SYSTEMDRIVE%", "4098 MB"))
LogError "Es ist nicht genüfreien Speicherplatz auf dem Laufwerk : %SYSTEMDRIVE% vorhanden."
isFatalError
endif
comment "Lotus Notes wird installiert"
Winbatch_install
Sub_check_exitcode
[Winbatch_install]
%ScriptPath%\$installfile$ TRANSFORMS="notes.mst" /qn
[Sub_check_exitcode]
comment "Test for installation success via exit code"
set $ExitCode$ = getLastExitCode
; informations to exit codes see
; http://msdn.microsoft.com/en-us/library ... S.85).aspx
; http://msdn.microsoft.com/en-us/library/aa368542.aspx
if ($ExitCode$ = "0")
comment "Looks good: setup program gives exitcode zero"
else
comment "Setup program gives a exitcode unequal zero: " + $ExitCode$
if ($ExitCode$ = "1605")
comment "ERROR_UNKNOWN_PRODUCT 1605 This action is only valid for products that are currently installed."
comment "Uninstall of a not installed product failed - no problem"
else
if ($ExitCode$ = "1641")
comment "looks good: setup program gives exitcode 1641"
comment "ERROR_SUCCESS_REBOOT_INITIATED 1641 The installer has initiated a restart. This message is indicative of a success."
else
if ($ExitCode$ = "3010")
comment "looks good: setup program gives exitcode 3010"
comment "ERROR_SUCCESS_REBOOT_REQUIRED 3010 A restart is required to complete the install. This message is indicative of a success."
else
logError "Fatal: Setup program gives an unknown exitcode unequal zero: " + $ExitCode$
isFatalError
endif
endif
endif
endif
I tested the installation (local,from the hard disk) with the winst32 utility and it works perfect on windows xp, any idea what could be?
Thanks
Re: Lotus Notes
wiki/userspace:lotus_notes_8.5.2
The solution from the link is better, because it use msiexec and don't call the msi-File directly.... perhaps it could be useful for you.
Vielen Dank für die Nutzung von opsi. Im Forum ist unser Support begrenzt.
Für den professionellen Einsatz und individuelle Beratung empfehlen wir einen Support-Vertrag und eine Schulung.
Gerne informieren wir Sie zu unserem Angebot.
uib GmbH
Telefon: +49 6131 27561 0
E-Mail: sales@uib.de
Re: Lotus Notes
Re: Lotus Notes
then you should try to use the log-option from msiexec to check, why the installation are waiting so long. I remember that the lotus notes 8.5.3 Version installs very long time from depot over the networkshare.
Vielen Dank für die Nutzung von opsi. Im Forum ist unser Support begrenzt.
Für den professionellen Einsatz und individuelle Beratung empfehlen wir einen Support-Vertrag und eine Schulung.
Gerne informieren wir Sie zu unserem Angebot.
uib GmbH
Telefon: +49 6131 27561 0
E-Mail: sales@uib.de
Re: Lotus Notes
I also have / had some problems installing Lotus Notes 8.5.3 under Windows XP. See my post here: viewtopic.php?f=7&t=3736
I'm now calling the msi with this command:
Maybe it helps you, using this command.msiexec /qn ALLUSERS=2 /i "%ScriptPath%\Lotus Notes 8.5.3.msi" TRANSFORMS="%ScriptPath%\LotusNotes8.5.3.mst" /L* "$LogDir$\NotesInstall.log"
Before making the package I've edited the .mst-file with the !InstallShield Tuner for Lotus Notes" to our needs.
My installation works fine under Windows 7 (64 Bit) as well as under Windows XP. Only the uninstall under XP makes some difficulties. But with the workaround mentioned in my post, I don't have problems anymore.
If you have further questions about my scripts please don't hesitate to contact me.
Have a nice day and
kind regards
Nils