Notes 8.5.3 Fixpack installieren unter XP mit opsi

Antworten
Vinc
Beiträge: 19
Registriert: 12 Aug 2013, 17:35

Notes 8.5.3 Fixpack installieren unter XP mit opsi

Beitrag von Vinc »

Guten Tag,

vielen Dank für die aufnahme im Forum und ich hoffe das hier jemand die Lösung für mein Problem kennt.

Ich versuche Notes 8.5.3 Fixpack 4 Hotfix 2 über opsi (von uib) zu verteilen doch Funktioniert dies nicht bei Windows XP Rechnern bzw. Die Installation läuft bis zu einem bestimmten punkt und dann läuft der Ladebalken nicht mehr weiter (im Windows und opsi log exitcode 1603).

Macht man den Rechner einfach aus (hardreset) und schaltet ihn dann an ist das Fixpack sauber installiert. Da aber die Installation bei 400 XP Rechnern automatisch laufen soll, muss das ganze ohne User Einwirkung und ohne Hardreset geschehen. Ich habe jede Möglichkeit ausprobiert das Fixpack zu installieren. (Batchdatei, .exe mit Parametern, .msi mit Parametern, setup.exe entpackt und nicht entpackt etc etc.) Die Silent installation ansich funktioniert wenn man diese über die Eingabeaufforderung ausführt, allerdings nicht mit opsi.

Wir nutzen die neuste opsi version 4.0.3 mit winst 4.11.3.6.

Da wir Notes 8.5.3 schon länger benutzen und auch erfolgreich mit opsi ausgerollt haben glauben wir mittlerweile das das Problem an der neuen Version 4.0.3 und dem winst 4.11.3.6 liegt. gibt es hier erfahrungen?

ich hoffe hier gibt es einen Notes/opsi experten der dieses Problem lösen kann. Unter Windows7 funktioniert dieses übrigens ohne Probleme.

mit freundlichem Gruß
Lai
Beiträge: 12
Registriert: 20 Sep 2012, 10:36

Re: Notes 8.5.3 Fixpack installieren unter XP mit opsi

Beitrag von Lai »

Hallo,

also bei mir läuft die Installation des Hotfix unter Windows XP nur
bei unter einem angemeldeten Benutzer.

im Wiki gibt es ein Script das die Installation mittels eines temporären
administrativen Benutzer ausführt.

selbiges gilt übrigens auch für Lotus Notes 9.0

schöne Grüße
Horst
Vinc
Beiträge: 19
Registriert: 12 Aug 2013, 17:35

Re: Notes 8.5.3 Fixpack installieren unter XP mit opsi

Beitrag von Vinc »

interessante information.

Unser Opsi legt eiegentlich einen temporären Benutzer mit adminrechten an der dann die installation durchführt.

Auch die installation von 853 client und 853 fixpack 3 schlägt fehl. Mittlerweile glaube ich das es am opsi 4.0.3 und am winst liegt. Anfang des Jahres haben diese noch zu 100 Prozent funktioniert.
Vinc
Beiträge: 19
Registriert: 12 Aug 2013, 17:35

Re: Notes 8.5.3 Fixpack installieren unter XP mit opsi

Beitrag von Vinc »

Okay anders:

All unsere XP und Win7 Rechner wurden über SUSI installiert und bei allen hat auch Anfang des Jahres noch die Installation von Lotus Notes 8.5.3 und den Fixpacks 1-5 funktioniert. Seit einiges Zeit ist dies nicht mehr so. Ich habe schon die Version 4.0.3 in verdacht gehabt aber ein VM Testserver mit 4.0.1 und Winst 4.11.1.1 (aus 2011) hat auch Probleme beim installieren unter Win XP. Was hat sich hier geändert. Ich glaube nicht das es am XP selber liegt denn ich habe virtuelle Maschienen mit XP Image aufgesetzt die keine Updates erfahren haben.
Benutzeravatar
d.oertel
uib-Team
Beiträge: 3327
Registriert: 04 Jun 2008, 14:27

Re: Notes 8.5.3 Fixpack installieren unter XP mit opsi

Beitrag von d.oertel »

Hi,

ich hätte da ein paar Vorschläge:

1. Den Prozess nicht über das Netz sondern von einem temporären lokalen Pfad aus ausführen.
2. Per opsi-winst 'ChangeDirectorty' Befehl vorher in dieses Verzeichnis wechseln
3. Winbatch mit Parameter /RunElevated

gruß
d.oertel


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


Vinc
Beiträge: 19
Registriert: 12 Aug 2013, 17:35

Re: Notes 8.5.3 Fixpack installieren unter XP mit opsi

Beitrag von Vinc »

folgendes habe ich ausprobiert:

Code: Alles auswählen

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

	if (GetNTVersion = "WinXP")
		Message "Kopiere Lotus Notes Fixpack 5"
		Files_copying
		ChangeDirectory "C:\tmp\fp5"
		Message "Installiere Lotus Notes Fixpack 5"
		WinBatch_xp /Runelevated
		Sub_check_exitcode
	else
	Message "Installiere Lotus Notes Fixpack 5"
	WinBatch_win7
	Sub_check_exitcode
	endif
endif


[Files_copying]
copy -s "%ScriptPath%\fp5\*.*" "C:\tmp\fp5"

[WinBatch_xp]
taskkill /f /im nlnotes.exe /im notes.exe
msiexec /passive /i "ClientUpdate.msi" /l*v C:\tmp\lotus-notes-853-fp5.txt
 
[WinBatch_win7]
taskkill /f /im nlnotes.exe /im notes.exe
%ScriptPath%\fp5\setup.exe /s /v"/qb /l* c:\tmp\def-lotus-notes-853-fp5.txt" 

Code: Alles auswählen

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

	if (GetNTVersion = "WinXP")
		Message "Kopiere Lotus Notes Fixpack 5"
		Files_copying
		ChangeDirectory "C:\tmp\fp5"
		Message "Installiere Lotus Notes Fixpack 5"
		WinBatch_xp /Runelevated
		Sub_check_exitcode
	else
	Message "Installiere Lotus Notes Fixpack 5"
	WinBatch_win7
	Sub_check_exitcode
	endif
endif


[Files_copying]
copy -s "%ScriptPath%\fp5\*.*" "C:\tmp\fp5"

[WinBatch_xp]
taskkill /f /im nlnotes.exe /im notes.exe
C:\tmp\fp5\LotusNotes.bat 
; in der Batch steht das der msiexec befehl von C:\ aus
 
[WinBatch_win7]
taskkill /f /im nlnotes.exe /im notes.exe
%ScriptPath%\fp5\setup.exe /s /v"/qb /l* c:\tmp\def-lotus-notes-853-fp5.txt" 
und jede weitere kombination die möglich ist mit runelevated und changedirectory
Meine Installation läuft auf Exitcode 1603

Er kann die FIx.ini nicht finden obwohl sie aber sicherlich dort ist.
Mir fällt nicht mehr viel ein.
Vinc
Beiträge: 19
Registriert: 12 Aug 2013, 17:35

Re: Notes 8.5.3 Fixpack installieren unter XP mit opsi

Beitrag von Vinc »

Code: Alles auswählen

=== Verbose logging started: 16.08.2013  15:45:18  Build type: SHIP UNICODE 3.01.4001.5512  Calling process: C:\WINDOWS\system32\msiexec.exe ===
MSI (c) (E8:C4) [15:45:18:816]: Resetting cached policy values
MSI (c) (E8:C4) [15:45:18:816]: Machine policy value 'Debug' is 0
MSI (c) (E8:C4) [15:45:18:816]: ******* RunEngine:
           ******* Product: ClientUpdate.msi
           ******* Action: 
           ******* CommandLine: **********
MSI (c) (E8:C4) [15:45:18:816]: Client-side and UI is none or basic: Running entire install on the server.
MSI (c) (E8:C4) [15:45:18:816]: Grabbed execution mutex.
MSI (c) (E8:C4) [15:45:18:886]: Cloaking enabled.
MSI (c) (E8:C4) [15:45:18:886]: Attempting to enable all disabled priveleges before calling Install on Server
MSI (c) (E8:C4) [15:45:18:896]: Incrementing counter to disable shutdown. Counter after increment: 0
MSI (s) (F0:20) [15:45:18:916]: Grabbed execution mutex.
MSI (s) (F0:24) [15:45:18:916]: Resetting cached policy values
MSI (s) (F0:24) [15:45:18:916]: Machine policy value 'Debug' is 0
MSI (s) (F0:24) [15:45:18:916]: ******* RunEngine:
           ******* Product: C:\tmp\fp5\ClientUpdate.msi
           ******* Action: 
           ******* CommandLine: **********
MSI (s) (F0:24) [15:45:18:926]: Machine policy value 'DisableUserInstalls' is 0
MSI (s) (F0:24) [15:45:18:926]: File will have security applied from OpCode.
MSI (s) (F0:24) [15:45:18:996]: SOFTWARE RESTRICTION POLICY: Verifying package --> 'C:\tmp\fp5\ClientUpdate.msi' against software restriction policy
MSI (s) (F0:24) [15:45:18:996]: SOFTWARE RESTRICTION POLICY: C:\tmp\fp5\ClientUpdate.msi has a digital signature
MSI (s) (F0:24) [15:45:28:550]: SOFTWARE RESTRICTION POLICY: C:\tmp\fp5\ClientUpdate.msi is permitted to run at the 'unrestricted' authorization level.
MSI (s) (F0:24) [15:45:28:550]: End dialog not enabled
MSI (s) (F0:24) [15:45:28:550]: Original package ==> C:\tmp\fp5\ClientUpdate.msi
MSI (s) (F0:24) [15:45:28:550]: Package we're running from ==> C:\WINDOWS\Installer\1109e.msi
MSI (s) (F0:24) [15:45:28:560]: APPCOMPAT: looking for appcompat database entry with ProductCode '{7A48BD87-9F3D-4B6D-B247-7AE5883B530B}'.
MSI (s) (F0:24) [15:45:28:560]: APPCOMPAT: no matching ProductCode found in database.
MSI (s) (F0:24) [15:45:28:560]: MSCOREE not loaded loading copy from system32
MSI (s) (F0:24) [15:45:28:560]: Machine policy value 'TransformsSecure' is 0
MSI (s) (F0:24) [15:45:28:560]: User policy value 'TransformsAtSource' is 0
MSI (s) (F0:24) [15:45:28:560]: Machine policy value 'DisablePatch' is 0
MSI (s) (F0:24) [15:45:28:560]: Machine policy value 'AllowLockdownPatch' is 0
MSI (s) (F0:24) [15:45:28:560]: Machine policy value 'DisableLUAPatching' is 0
MSI (s) (F0:24) [15:45:28:560]: Machine policy value 'DisableFlyWeightPatching' is 0
MSI (s) (F0:24) [15:45:28:560]: APPCOMPAT: looking for appcompat database entry with ProductCode '{7A48BD87-9F3D-4B6D-B247-7AE5883B530B}'.
MSI (s) (F0:24) [15:45:28:560]: APPCOMPAT: no matching ProductCode found in database.
MSI (s) (F0:24) [15:45:28:560]: Transforms are not secure.
MSI (s) (F0:24) [15:45:28:560]: Command Line: REBOOTPROMPT=S CURRENTDIRECTORY=C:\tmp\fp5 CLIENTUILEVEL=2 CLIENTPROCESSID=1768 
MSI (s) (F0:24) [15:45:28:560]: PROPERTY CHANGE: Adding PackageCode property. Its value is '{7571CC20-D85A-4398-8CBB-67034097ECEA}'.
MSI (s) (F0:24) [15:45:28:560]: Product Code passed to Engine.Initialize:           ''
MSI (s) (F0:24) [15:45:28:560]: Product Code from property table before transforms: '{7A48BD87-9F3D-4B6D-B247-7AE5883B530B}'
MSI (s) (F0:24) [15:45:28:560]: Product Code from property table after transforms:  '{7A48BD87-9F3D-4B6D-B247-7AE5883B530B}'
MSI (s) (F0:24) [15:45:28:560]: Product not registered: beginning first-time install
MSI (s) (F0:24) [15:45:28:560]: PROPERTY CHANGE: Adding ProductState property. Its value is '-1'.
MSI (s) (F0:24) [15:45:28:560]: Entering CMsiConfigurationManager::SetLastUsedSource.
MSI (s) (F0:24) [15:45:28:560]: User policy value 'SearchOrder' is 'nmu'
MSI (s) (F0:24) [15:45:28:560]: Adding new sources is allowed.
MSI (s) (F0:24) [15:45:28:560]: PROPERTY CHANGE: Adding PackagecodeChanging property. Its value is '1'.
MSI (s) (F0:24) [15:45:28:560]: Package name extracted from package path: 'ClientUpdate.msi'
MSI (s) (F0:24) [15:45:28:560]: Package to be registered: 'ClientUpdate.msi'
MSI (s) (F0:24) [15:45:28:560]: Note: 1: 2729 
MSI (s) (F0:24) [15:45:28:560]: Note: 1: 2729 
MSI (s) (F0:24) [15:45:28:560]: Note: 1: 2262 2: AdminProperties 3: -2147287038 
MSI (s) (F0:24) [15:45:28:560]: Machine policy value 'DisableMsi' is 0
MSI (s) (F0:24) [15:45:28:560]: Machine policy value 'AlwaysInstallElevated' is 0
MSI (s) (F0:24) [15:45:28:560]: User policy value 'AlwaysInstallElevated' is 0
MSI (s) (F0:24) [15:45:28:560]: Product installation will be elevated because user is admin and product is being installed per-machine.
MSI (s) (F0:24) [15:45:28:560]: Running product '{7A48BD87-9F3D-4B6D-B247-7AE5883B530B}' with elevated privileges: Product is assigned.
MSI (s) (F0:24) [15:45:28:560]: PROPERTY CHANGE: Adding REBOOTPROMPT property. Its value is 'S'.
MSI (s) (F0:24) [15:45:28:560]: PROPERTY CHANGE: Adding CURRENTDIRECTORY property. Its value is 'C:\tmp\fp5'.
MSI (s) (F0:24) [15:45:28:560]: PROPERTY CHANGE: Adding CLIENTUILEVEL property. Its value is '2'.
MSI (s) (F0:24) [15:45:28:560]: PROPERTY CHANGE: Adding CLIENTPROCESSID property. Its value is '1768'.
MSI (s) (F0:24) [15:45:28:560]: TRANSFORMS property is now: 
MSI (s) (F0:24) [15:45:28:560]: PROPERTY CHANGE: Adding VersionDatabase property. Its value is '200'.
MSI (s) (F0:24) [15:45:28:560]: Note: 1: 1402 2: HKEY_USERS\S-1-5-21-527237240-1060284298-1957994488-1028\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders 3: 2 
MSI (s) (F0:24) [15:45:28:560]: Note: 1: 1402 2: HKEY_USERS\S-1-5-21-527237240-1060284298-1957994488-1028\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders 3: 2 
MSI (s) (F0:24) [15:45:28:560]: Found shell folder  by spelunking through the registry.
MSI (s) (F0:24) [15:45:28:560]: Note: 1: 2103 2: 26 
MSI (s) (F0:24) [15:45:28:560]: Note: 1: 1402 2: HKEY_USERS\S-1-5-21-527237240-1060284298-1957994488-1028\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders 3: 2 
MSI (s) (F0:24) [15:45:28:560]: Note: 1: 1402 2: HKEY_USERS\S-1-5-21-527237240-1060284298-1957994488-1028\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders 3: 2 
MSI (s) (F0:24) [15:45:28:560]: Found shell folder  by spelunking through the registry.
MSI (s) (F0:24) [15:45:28:560]: Note: 1: 2103 2: 6 
MSI (s) (F0:24) [15:45:28:570]: Note: 1: 1402 2: HKEY_USERS\S-1-5-21-527237240-1060284298-1957994488-1028\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders 3: 2 
MSI (s) (F0:24) [15:45:28:570]: Note: 1: 1402 2: HKEY_USERS\S-1-5-21-527237240-1060284298-1957994488-1028\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders 3: 2 
MSI (s) (F0:24) [15:45:28:570]: Found shell folder  by spelunking through the registry.
MSI (s) (F0:24) [15:45:28:570]: Note: 1: 2103 2: 19 
MSI (s) (F0:24) [15:45:28:570]: Note: 1: 1402 2: HKEY_USERS\S-1-5-21-527237240-1060284298-1957994488-1028\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders 3: 2 
MSI (s) (F0:24) [15:45:28:570]: Note: 1: 1402 2: HKEY_USERS\S-1-5-21-527237240-1060284298-1957994488-1028\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders 3: 2 
MSI (s) (F0:24) [15:45:28:570]: Found shell folder  by spelunking through the registry.
MSI (s) (F0:24) [15:45:28:570]: Note: 1: 2103 2: 5 
MSI (s) (F0:24) [15:45:28:570]: Note: 1: 1402 2: HKEY_USERS\S-1-5-21-527237240-1060284298-1957994488-1028\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders 3: 2 
MSI (s) (F0:24) [15:45:28:570]: Note: 1: 1402 2: HKEY_USERS\S-1-5-21-527237240-1060284298-1957994488-1028\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders 3: 2 
MSI (s) (F0:24) [15:45:28:570]: Found shell folder  by spelunking through the registry.
MSI (s) (F0:24) [15:45:28:570]: Note: 1: 2103 2: 27 
MSI (s) (F0:24) [15:45:28:570]: Note: 1: 1402 2: HKEY_USERS\S-1-5-21-527237240-1060284298-1957994488-1028\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders 3: 2 
MSI (s) (F0:24) [15:45:28:570]: Note: 1: 1402 2: HKEY_USERS\S-1-5-21-527237240-1060284298-1957994488-1028\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders 3: 2 
MSI (s) (F0:24) [15:45:28:570]: Found shell folder  by spelunking through the registry.
MSI (s) (F0:24) [15:45:28:580]: Note: 1: 2103 2: 20 
MSI (s) (F0:24) [15:45:28:580]: Note: 1: 2898 2: MS Sans Serif 3: MS Sans Serif 4: 0 5: 16 
MSI (s) (F0:24) [15:45:28:580]: MSCOREE not loaded loading copy from system32
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding Privileged property. Its value is '1'.
MSI (s) (F0:24) [15:45:28:580]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2 
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding USERNAME property. Its value is 'Stute'.
MSI (s) (F0:24) [15:45:28:580]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2 
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding COMPANYNAME property. Its value is 'Stute'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding DATABASE property. Its value is 'C:\WINDOWS\Installer\1109e.msi'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding OriginalDatabase property. Its value is 'C:\tmp\fp5\ClientUpdate.msi'.
MSI (s) (F0:24) [15:45:28:580]: Note: 1: 2205 2:  3: PatchPackage 
MSI (s) (F0:24) [15:45:28:580]: Machine policy value 'DisableRollback' is 0
MSI (s) (F0:24) [15:45:28:580]: User policy value 'DisableRollback' is 0
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding UILevel property. Its value is '3'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding MsiUIProgressOnly property. Its value is '1'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding MsiUIHideCancel property. Its value is '1'.
=== Logging started: 16.08.2013  15:45:28 ===
MSI (s) (F0:24) [15:45:28:580]: Checking in-progress install: install for same configuration.
MSI (s) (F0:24) [15:45:28:580]: Suspended install detected. Resuming.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding ADDLOCAL property. Its value is 'CoreActions,UpdateFeature,Update_Files'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding TARGETDIR property. Its value is 'C:\'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding SourceDir property. Its value is 'C:\WINDOWS\TEMP\{DE51D6AC-571B-4E76-AA73-67EBB5298ED3}\'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding ALLUSERSPROFILE property. Its value is 'C:\'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding INSTALLDIR property. Its value is 'C:\Program Files\TempFolder\TempFolder\'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding USERPROFILE property. Its value is 'C:\'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding RCP_WORKSPACE_LOCATION property. Its value is 'C:/Documents and Settings/Default User/Local Settings/Application Data/Lotus/Notes/Data/workspace'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding RCPDATA property. Its value is '${env.USERPROFILE}/Local Settings/Application Data/Lotus/Notes/Data/workspace'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding IS_VALID_LOCATION property. Its value is 'true'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding DOMIGRATE property. Its value is 'false'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding PROVDEBUG property. Its value is 'false'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding REMOVEUSERDATA property. Its value is 'false'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding INSTALLCONFIGURATION property. Its value is 'user'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding XPD_USERHOME property. Its value is 'C:/Documents and Settings/Default User'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding XPD_USERNAME property. Its value is 'pcpatch'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding PLATFORM_NOT_RUNNING property. Its value is 'true'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding SOURCEDIR property. Its value is 'C:\WINDOWS\TEMP\{DE51D6AC-571B-4E76-AA73-67EBB5298ED3}\'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding ROOTDRIVE property. Its value is 'C:\'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding XPD_UPGRADE property. Its value is '5'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding COREINSTALLDIR property. Its value is 'C:\Program Files\IBM\Lotus\Notes\framework\'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding RCP_PROVISIONING_LAUNCH_FAILURE property. Its value is 'Failed to launch platform provisioning. Refer to %s for more information.	'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding RCP_LAUNCHER_PROCESS_ERROR property. Its value is 'The launcher failed with an error. Refer to %s for more information.	'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding PRODUCT_TARGET_VERSION_SYNTAX_ERROR property. Its value is 'Target version has invalid syntax: %s.'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding RCP_PRODUCT_FIX_NOT_FOUND_ERROR property. Its value is 'The product fix level was not found. Unable to perform fix check.	'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding RCP_PRODUCT_FIX_COMPATIBLE_ERROR property. Its value is 'A compatible product fix was not found. Installed fix is: %s.	'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding RCP_TARGET_PRODUCT_NOT_FOUND_ERROR property. Its value is 'Unable to find valid target platform.	'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding RCP_XML_PARSER_ERROR property. Its value is 'XML Parser Error: %s	'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding RCP_MANIFEST_INVALID_ERROR property. Its value is 'Unable to load the provisioning manifest file for processing.	'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding RCP_PRODUCT_COMPATIBLE_ERROR property. Its value is 'A compatible product version was not found. Installed version is: %s.	'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding RCP_PRODUCT_CODE_ERROR property. Its value is 'The product code was not found. Unable to determine compatibility.	'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding RCP_PRODUCT_VERSION_ERROR property. Its value is 'The product version was not found. Unable to perform version check.	'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding RCP_BACKUP_UPGRADE_ERROR property. Its value is 'Failed attempting to move %s to %s.  File does not exist or may be in use.	'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding RCP_RUNNING_PLATFORM_DETECTED_ERROR property. Its value is 'A running instance of the platform, with process id: %ld, has been detected.  Exit the running platform before continuing.	'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding RCP_INVALID_EXTERNAL_JVM_ERROR property. Its value is 'External VM is not valid - it must be a 1.5 or 1.6 Sun or IBM VM.	'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding RCP_INVALID_LOCATION_MSG property. Its value is 'Invalid directory location: 	'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding RCP_LOCATION_INVALID_ALLOW_NONASCII_ERROR property. Its value is 'The specified directory location cannot contain any of the following characters: 	'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding RCP_LOCATION_INVALID_ERROR property. Its value is 'The specified directory location cannot contain non-ASCII characters or any of the following characters: 	'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding RCP_REGISTRY_VALUE_FIND_ERROR property. Its value is 'Could not find registry value: %s	'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding RCP_REGISTRY_KEY_FIND_ERROR property. Its value is 'Could not find registry key: %s	'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding RCP_JVM_PARENT_FEATURE_ERROR property. Its value is 'VM parent feature version not found.	'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding RCP_JVM_FEATURE_ERROR property. Its value is 'VM feature version not found.	'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding RCP_JVM_PLUGIN_ERROR property. Its value is 'VM plug-in not found.	'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding RCP_BASE_PLUGIN_ERROR property. Its value is 'RCP Base plug-in not found.	'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding RCP_COPY_FILE_ERROR property. Its value is 'Could not copy file: %s Old Path: %s, New Path: %s	'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding RCP_FILE_NOT_FOUND_ERROR property. Its value is 'File not found: %s	'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding RCP_PROVISIONING_FILE_ERROR property. Its value is 'File not found: %s Provisioning process failed to launch or was stopped before status could be determined.	'.
MSI (s) (F0:24) [15:45:28:580]: PROPERTY CHANGE: Adding RCP_PROVISIONING_PROCESS_ERROR property. Its value is 'Failed to create provisioning process: %s	'.
MSI (s) (F0:24) [15:45:28:590]: PROPERTY CHANGE: Adding PROVLOGSLOCMSG property. Its value is 'For additional information, please refer to the logs:	'.
MSI (s) (F0:24) [15:45:28:590]: PROPERTY CHANGE: Adding PROVERRORMSG property. Its value is 'Unexpected results have occurred during the provisioning operation.	'.
MSI (s) (F0:24) [15:45:28:590]: PROPERTY CHANGE: Adding PROV_LANGCODE property. Its value is 'en'.
MSI (s) (F0:24) [15:45:28:590]: PROPERTY CHANGE: Adding LANGCODE property. Its value is 'en'.
MSI (s) (F0:24) [15:45:28:590]: PROPERTY CHANGE: Adding HOTFIXACTION property. Its value is 'INSTALL'.
MSI (s) (F0:24) [15:45:28:590]: PROPERTY CHANGE: Adding FIXINI_LOCATION property. Its value is 'C:\Program Files\IBM\Lotus\Notes\\fix.ini'.
MSI (s) (F0:24) [15:45:28:590]: PROPERTY CHANGE: Adding HOTFIXVERSION property. Its value is 'FP5'.
MSI (s) (F0:24) [15:45:28:590]: PROPERTY CHANGE: Adding NOTESUPDATEPATH property. Its value is 'P:\def-lotus-notes-853-fp5\fp5\deploy\hotfix\fixpack.cab'.
MSI (s) (F0:24) [15:45:28:590]: PROPERTY CHANGE: Adding NOTESNFOPATH property. Its value is 'P:\def-lotus-notes-853-fp5\fp5\deploy\hotfix\ClientUpdate.nfo'.
MSI (s) (F0:24) [15:45:28:590]: PROPERTY CHANGE: Adding NOTESINSTALLPATH property. Its value is 'C:\Program Files\IBM\Lotus\Notes\'.
MSI (s) (F0:24) [15:45:28:590]: PROPERTY CHANGE: Adding INSTALLEDFIXVERSION property. Its value is 'FP4 SHF69'.
MSI (s) (F0:24) [15:45:28:590]: PROPERTY CHANGE: Adding INCREMENTAL property. Its value is 'FALSE'.
MSI (s) (F0:24) [15:45:28:590]: PROPERTY CHANGE: Adding DONTINSTALLFIX property. Its value is 'FALSE'.
MSI (s) (F0:24) [15:45:28:590]: PROPERTY CHANGE: Adding ISSETUPFILESCOMPLETED property. Its value is 'Completed'.
MSI (s) (F0:24) [15:45:28:590]: PROPERTY CHANGE: Adding SUPPORTDIR property. Its value is 'C:\WINDOWS\TEMP\{7A48BD87-9F3D-4B6D-B247-7AE5883B530B}'.
MSI (s) (F0:24) [15:45:28:590]: PROPERTY CHANGE: Adding ACTION property. Its value is 'INSTALL'.
MSI (s) (F0:24) [15:45:28:590]: PROPERTY CHANGE: Adding XPD_INSTALL_LOCATION.5F3129E8_3AD4_4346_AEE6_A314E2DE64D9 property. Its value is 'C:/Program Files/IBM/Lotus/Notes/framework/'.
MSI (s) (F0:24) [15:45:28:590]: PROPERTY CHANGE: Modifying HOTFIXTEXT property. Its current value is 'TBD'. Its new value: 'Select Next to install FP5'.
MSI (s) (F0:24) [15:45:28:590]: PROPERTY CHANGE: Modifying INSTALLEDVERSION property. Its current value is '7'. Its new value: 'FP5'.
MSI (s) (F0:24) [15:45:28:590]: PROPERTY CHANGE: Modifying TYPE property. Its current value is 'TBD'. Its new value: 'INSTALL'.
MSI (s) (F0:24) [15:45:28:590]: PROPERTY CHANGE: Adding ARPINSTALLLOCATION property. Its value is 'C:\Program Files\TempFolder\TempFolder\'.
MSI (s) (F0:24) [15:45:28:590]: PROPERTY CHANGE: Modifying CLIENTPROCESSID property. Its current value is '1768'. Its new value: '1700'.
MSI (s) (F0:24) [15:45:28:590]: PROPERTY CHANGE: Modifying CURRENTDIRECTORY property. Its current value is 'C:\tmp\fp5'. Its new value: 'C:\WINDOWS\system32'.
MSI (s) (F0:24) [15:45:28:590]: PROPERTY CHANGE: Adding SETUPEXEDIR property. Its value is 'P:\def-lotus-notes-853-fp5\fp5'.
MSI (s) (F0:24) [15:45:28:590]: PROPERTY CHANGE: Adding RESUME property. Its value is '1'.
MSI (s) (F0:24) [15:45:28:590]: PROPERTY CHANGE: Adding Resume property. Its value is '1'.
MSI (s) (F0:24) [15:45:28:590]: PROPERTY CHANGE: Adding UpdateStarted property. Its value is '1'.
MSI (s) (F0:24) [15:45:28:590]: PROPERTY CHANGE: Adding Preselected property. Its value is '1'.
MSI (s) (F0:24) [15:45:28:590]: Doing action: INSTALL
MSI (s) (F0:24) [15:45:28:600]: Running ExecuteSequence
MSI (s) (F0:24) [15:45:28:600]: Doing action: WindowsFolder.68B7C6D9_1DF2_54C1_FF1F_C8B3B9A1E18E
Action start 15:45:28: INSTALL.
MSI (s) (F0:24) [15:45:28:600]: PROPERTY CHANGE: Adding WindowsFolder.68B7C6D9_1DF2_54C1_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\'.
Action start 15:45:28: WindowsFolder.68B7C6D9_1DF2_54C1_FF1F_C8B3B9A1E18E.
MSI (s) (F0:24) [15:45:28:600]: Doing action: SystemFolder.68B7C6D9_1DF2_54C1_FF1F_C8B3B9A1E18E
Action ended 15:45:28: WindowsFolder.68B7C6D9_1DF2_54C1_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (F0:24) [15:45:28:600]: PROPERTY CHANGE: Adding SystemFolder.68B7C6D9_1DF2_54C1_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\system32\'.
Action start 15:45:28: SystemFolder.68B7C6D9_1DF2_54C1_FF1F_C8B3B9A1E18E.
MSI (s) (F0:24) [15:45:28:600]: Doing action: WindowsFolder.9BAE13A2_E7AF_D6C3_FF1F_C8B3B9A1E18E
Action ended 15:45:28: SystemFolder.68B7C6D9_1DF2_54C1_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (F0:24) [15:45:28:600]: PROPERTY CHANGE: Adding WindowsFolder.9BAE13A2_E7AF_D6C3_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\'.
Action start 15:45:28: WindowsFolder.9BAE13A2_E7AF_D6C3_FF1F_C8B3B9A1E18E.
MSI (s) (F0:24) [15:45:28:610]: Doing action: SystemFolder.9BAE13A2_E7AF_D6C3_FF1F_C8B3B9A1E18E
Action ended 15:45:28: WindowsFolder.9BAE13A2_E7AF_D6C3_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (F0:24) [15:45:28:610]: PROPERTY CHANGE: Adding SystemFolder.9BAE13A2_E7AF_D6C3_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\system32\'.
Action start 15:45:28: SystemFolder.9BAE13A2_E7AF_D6C3_FF1F_C8B3B9A1E18E.
MSI (s) (F0:24) [15:45:28:610]: Doing action: WindowsFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E
Action ended 15:45:28: SystemFolder.9BAE13A2_E7AF_D6C3_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (F0:24) [15:45:28:610]: PROPERTY CHANGE: Adding WindowsFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\'.
Action start 15:45:28: WindowsFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E.
MSI (s) (F0:24) [15:45:28:610]: Doing action: SystemFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E
Action ended 15:45:28: WindowsFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (F0:24) [15:45:28:610]: PROPERTY CHANGE: Adding SystemFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\system32\'.
Action start 15:45:28: SystemFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E.
MSI (s) (F0:24) [15:45:28:610]: Doing action: WindowsFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E
Action ended 15:45:28: SystemFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (F0:24) [15:45:28:610]: PROPERTY CHANGE: Adding WindowsFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\'.
Action start 15:45:28: WindowsFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E.
MSI (s) (F0:24) [15:45:28:610]: Doing action: SystemFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E
Action ended 15:45:28: WindowsFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (F0:24) [15:45:28:610]: PROPERTY CHANGE: Adding SystemFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E property. Its value is 'C:\WINDOWS\system32\'.
Action start 15:45:28: SystemFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E.
MSI (s) (F0:24) [15:45:28:610]: Doing action: ISSetupFilesExtract
Action ended 15:45:28: SystemFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E. Return value 1.
MSI (s) (F0:B8) [15:45:28:630]: Invoking remote custom action. DLL: C:\WINDOWS\Installer\MSI1.tmp, Entrypoint: SFStartupEx
MSI (s) (F0:7C) [15:45:28:630]: Generating random cookie.
MSI (s) (F0:7C) [15:45:28:640]: Created Custom Action Server with PID 640 (0x280).
MSI (s) (F0:1C) [15:45:28:680]: Running as a service.
MSI (s) (F0:B0) [15:45:28:690]: Hello, I'm your 32bit Impersonated custom action server.
Action start 15:45:28: ISSetupFilesExtract.
1: Starting to extract setup files 
1: SetupFile Extraction has been run previously...skipping action 
MSI (s) (F0:24) [15:45:28:760]: Skipping action: CleanupDynamicFeatures.5F3129E8_3AD4_4346_AEE6_A314E2DE64D9 (condition is false)
MSI (s) (F0:24) [15:45:28:760]: Doing action: AppSearch
Action ended 15:45:28: ISSetupFilesExtract. Return value 1.
Action start 15:45:28: AppSearch.
MSI (s) (F0:24) [15:45:28:760]: PROPERTY CHANGE: Modifying XPD_INSTALL_LOCATION.5F3129E8_3AD4_4346_AEE6_A314E2DE64D9 property. Its current value is 'C:/Program Files/IBM/Lotus/Notes/framework/'. Its new value: 'C:\Program Files\IBM\Lotus\Notes\framework\'.
MSI (s) (F0:24) [15:45:28:770]: Note: 1: 1402 2: HKEY_CURRENT_USER\SOFTWARE\IBM\Lotus\Expeditor\ 3: 2 
MSI (s) (F0:24) [15:45:28:770]: Note: 1: 2262 2: Signature 3: -2147287038 
MSI (s) (F0:24) [15:45:28:770]: Note: 1: 1402 2: HKEY_USERS\.DEFAULT\Software\IBM\Lotus\Expeditor\ 3: 2 
MSI (s) (F0:24) [15:45:28:770]: Note: 1: 2262 2: Signature 3: -2147287038 
MSI (s) (F0:24) [15:45:28:770]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\SOFTWARE\IBM\Lotus\Expeditor\{D8641E4B-77AF-4EAC-9137-8D4DCB1478E2} 3: 2 
MSI (s) (F0:24) [15:45:28:770]: Note: 1: 2262 2: Signature 3: -2147287038 
MSI (s) (F0:24) [15:45:28:770]: Note: 1: 1402 2: HKEY_CURRENT_USER\SOFTWARE\IBM\Lotus\Expeditor\{D8641E4B-77AF-4EAC-9137-8D4DCB1478E2} 3: 2 
MSI (s) (F0:24) [15:45:28:770]: Note: 1: 2262 2: Signature 3: -2147287038 
MSI (s) (F0:24) [15:45:28:770]: Note: 1: 2262 2: Signature 3: -2147287038 
MSI (s) (F0:24) [15:45:28:770]: Note: 1: 1402 2: HKEY_CURRENT_USER\SOFTWARE\IBM\Lotus\Expeditor\{5BA7CD07-4D6C-4D16-B1A6-2B50DD5F17AD} 3: 2 
MSI (s) (F0:24) [15:45:28:770]: Doing action: CheckForProcessesRunning
Action ended 15:45:28: AppSearch. Return value 1.
MSI (s) (F0:D0) [15:45:28:780]: Invoking remote custom action. DLL: C:\WINDOWS\Installer\MSI2.tmp, Entrypoint: CheckForProcessesRunning
Action start 15:45:28: CheckForProcessesRunning.
IsLibraryLoaded
IsLibraryLoaded
IsLibraryLoaded
MSI (s) (F0:24) [15:45:30:492]: Doing action: GetHotFixInfo
Action ended 15:45:30: CheckForProcessesRunning. Return value 1.
MSI (s) (F0:E0) [15:45:30:522]: Invoking remote custom action. DLL: C:\WINDOWS\Installer\MSI3.tmp, Entrypoint: GetHotFixInfo
Action start 15:45:30: GetHotFixInfo.

Enter "GetHotFixInfo" Custom Action
MSI (s) (F0!E4) [15:45:30:683]: PROPERTY CHANGE: Modifying INSTALLEDFIXVERSION property. Its current value is 'FP4 SHF69'. Its new value: 'FP5'.
ini location is P:\def-lotus-notes-853-fp5\fp5\deploy\hotfix\fix.ini
Enter ValidateStandardVersion()
fixIniName = P:\def-lotus-notes-853-fp5\fp5\deploy\hotfix\fix.ini
installPath = C:\Program Files\IBM\Lotus\Notes\
forVersion from .INI file = 
Exit ValidateStandardVersion() - return value: "TRUE"
MSI (s) (F0!E4) [15:45:30:703]: PROPERTY CHANGE: Modifying DONTINSTALLFIX property. Its current value is 'FALSE'. Its new value: 'TRUE'.
MSI (s) (F0!E4) [15:45:30:703]: PROPERTY CHANGE: Modifying HOTFIXTEXT property. Its current value is 'Select Next to install FP5'. Its new value: 'Ensure that you are running installer from correct location. Fix.ini can't be located from expected location.'.
MSI (s) (F0!E4) [15:45:30:703]: PROPERTY CHANGE: Modifying INSTALLEDVERSION property. Its current value is 'FP5'. Its new value: ''.
notes installed location C:\Program Files\IBM\Lotus\Notes\
MSI (s) (F0!E4) [15:45:30:703]: PROPERTY CHANGE: Adding Type property. Its value is 'Install'.
MSI (s) (F0!E4) [15:45:30:703]: PROPERTY CHANGE: Adding type property. Its value is 'install'.
MSI (s) (F0!E4) [15:45:30:703]: PROPERTY CHANGE: Adding Typing property. Its value is 'installing'.
MSI (s) (F0!E4) [15:45:30:703]: PROPERTY CHANGE: Adding typed property. Its value is 'installed'.
MSI (s) (F0!E4) [15:45:30:703]: PROPERTY CHANGE: Adding types property. Its value is 'installs'.
validatePreReqFixInstalled INCREMENTAL property  FALSE
MSI (s) (F0:24) [15:45:30:703]: Skipping action: ValidateInstallForCore (condition is false)
MSI (s) (F0:24) [15:45:30:703]: Doing action: LaunchConditions
Action ended 15:45:30: GetHotFixInfo. Return value 1.
MSI (s) (F0:24) [15:45:30:703]: Note: 1: 2205 2:  3: LaunchCondition 
MSI (s) (F0:24) [15:45:30:703]: Note: 1: 2228 2:  3: LaunchCondition 4: SELECT `Condition`, `Description` FROM `LaunchCondition` 
Action start 15:45:30: LaunchConditions.
MSI (s) (F0:24) [15:45:30:703]: Doing action: FindRelatedProducts
Action ended 15:45:30: LaunchConditions. Return value 0.
MSI (s) (F0:24) [15:45:30:703]: Note: 1: 2205 2:  3: Upgrade 
MSI (s) (F0:24) [15:45:30:703]: Note: 1: 2228 2:  3: Upgrade 4: SELECT `UpgradeCode`,`VersionMin`,`VersionMax`,`Language`,`Attributes`,`ActionProperty` FROM `Upgrade` 
Action start 15:45:30: FindRelatedProducts.
MSI (s) (F0:24) [15:45:30:703]: Skipping action: CCPSearch (condition is false)
MSI (s) (F0:24) [15:45:30:703]: Skipping action: RMCCPSearch (condition is false)
MSI (s) (F0:24) [15:45:30:703]: Doing action: ValidateProductID
Action ended 15:45:30: FindRelatedProducts. Return value 0.
Action start 15:45:30: ValidateProductID.
MSI (s) (F0:24) [15:45:30:703]: Doing action: CheckForUpgrade.5F3129E8_3AD4_4346_AEE6_A314E2DE64D9
Action ended 15:45:30: ValidateProductID. Return value 1.
MSI (s) (F0:E8) [15:45:30:713]: Invoking remote custom action. DLL: C:\WINDOWS\Installer\MSI4.tmp, Entrypoint: CheckForUpgrade
Action start 15:45:30: CheckForUpgrade.5F3129E8_3AD4_4346_AEE6_A314E2DE64D9.
XPD: 16.08.2013 15:45:30 GenerateInfo/CheckForUpgrade: DEBUG - Entering
XPD: 16.08.2013 15:45:30 CActionsCommon/ResetTempPropFile: DEBUG - Entering
XPD: 16.08.2013 15:45:30 CActionsCommon/ResetTempPropFile: DEBUG - Exiting
XPD: 16.08.2013 15:45:30 GenerateInfo/getUpgradeType: DEBUG - Entering
XPD: 16.08.2013 15:45:30 StringResource/getLanguageInfo: DEBUG - Entering
XPD: 16.08.2013 15:45:30 CActionsCommon/GetProperty: DEBUG - Retrieved property: ProductLanguage, Value: 1033
XPD: 16.08.2013 15:45:30 StringResource/getLanguageInfo: INFO - Installer Language - ENGLISH
XPD: 16.08.2013 15:45:30 StringResource/getLanguageInfo: DEBUG - Exiting
XPD: 16.08.2013 15:45:30 StringResource/extractResourceFile: DEBUG - Entering
XPD: 16.08.2013 15:45:30 StringResource/extractResourceFile: DEBUG - Exiting
XPD: 16.08.2013 15:45:30 CActionsCommon/GetProperty: DEBUG - Retrieved property: UILevel, Value: 3
MSI (s) (F0!EC) [15:45:30:923]: PROPERTY CHANGE: Deleting XPD_INSTALL_LOCATION.5F3129E8_3AD4_4346_AEE6_A314E2DE64D9 property. Its current value is 'C:\Program Files\IBM\Lotus\Notes\framework\'.
XPD: 16.08.2013 15:45:30 CActionsCommon/GetProperty: DEBUG - Retrieved property: HOTFIX, Value: true
XPD: 16.08.2013 15:45:30 CActionsCommon/GetProperty: DEBUG - Retrieved property: UpgradeCode, Value: {5BA7CD07-4D6C-4D16-B1A6-2B50DD5F17AD}
XPD: 16.08.2013 15:45:30 GenerateInfo/verifyPlatform: DEBUG - Verifying existence of: C:\Program Files\IBM\Lotus\Notes\framework\rcp/rcplauncher.properties and C:\Program Files\IBM\Lotus\Notes\framework\rcp/rcplauncher.exe
XPD: 16.08.2013 15:45:30 GenerateInfo/verifyPlatform: DEBUG - Found C:\Program Files\IBM\Lotus\Notes\framework\rcp/rcplauncher.properties
MSI (s) (F0!EC) [15:45:30:933]: PROPERTY CHANGE: Adding XPD_INSTALL_LOCATION.5F3129E8_3AD4_4346_AEE6_A314E2DE64D9 property. Its value is 'C:/Program Files/IBM/Lotus/Notes/framework/'.
XPD: 16.08.2013 15:45:30 GenerateInfo/verifyPlatform: DEBUG - Using this platform location for this installation - C:\Program Files\IBM\Lotus\Notes\framework\
XPD: 16.08.2013 15:45:30 CActionsCommon/GetProperty: DEBUG - Retrieved property: TARGETUPGRADECODE1, Value: {D8641E4B-77AF-4EAC-9137-8D4DCB1478E2}
XPD: 16.08.2013 15:45:30 CActionsCommon/GetProperty: DEBUG - Retrieved property: TARGETUPGRADECODE2, Value: {5BA7CD07-4D6C-4D16-B1A6-2B50DD5F17AD}
XPD: 16.08.2013 15:45:30 GenerateInfo/verifyPlatform: DEBUG - Verifying existence of: C:\Program Files\IBM\Lotus\Notes\framework\rcp/rcplauncher.properties and C:\Program Files\IBM\Lotus\Notes\framework\rcp/rcplauncher.exe
XPD: 16.08.2013 15:45:30 GenerateInfo/verifyPlatform: DEBUG - Found C:\Program Files\IBM\Lotus\Notes\framework\rcp/rcplauncher.properties
XPD: 16.08.2013 15:45:30 GenerateInfo/verifyPlatform: DEBUG - Using this platform location for this installation - C:\Program Files\IBM\Lotus\Notes\framework\
XPD: 16.08.2013 15:45:30 CActionsCommon/GetProperty: DEBUG - Retrieved property: XPD_INSTALL_LOCATION.5F3129E8_3AD4_4346_AEE6_A314E2DE64D9, Value: C:/Program Files/IBM/Lotus/Notes/framework/
XPD: 16.08.2013 15:45:30 CActionsCommon/GetProperty: DEBUG - Retrieved property: UILevel, Value: 3
XPD: 16.08.2013 15:45:30 CActionsCommon/GetProperty: DEBUG - Retrieved property: XPD_INSTALL_LOCATION.5F3129E8_3AD4_4346_AEE6_A314E2DE64D9, Value: C:/Program Files/IBM/Lotus/Notes/framework/
XPD: 16.08.2013 15:45:30 GenerateInfo/verifyPlatform: DEBUG - Verifying existence of: C:\Program Files\IBM\Lotus\Notes\framework\rcp/rcplauncher.properties and C:\Program Files\IBM\Lotus\Notes\framework\rcp/rcplauncher.exe
XPD: 16.08.2013 15:45:30 GenerateInfo/verifyPlatform: DEBUG - Found C:\Program Files\IBM\Lotus\Notes\framework\rcp/rcplauncher.properties
XPD: 16.08.2013 15:45:30 GenerateInfo/verifyPlatform: DEBUG - Using this platform location for this installation - C:\Program Files\IBM\Lotus\Notes\framework\
XPD: 16.08.2013 15:45:30 GenerateInfo/getUpgradeType: DEBUG - Found pre-existing platform files, determining type of upgrade...
XPD: 16.08.2013 15:45:30 GenerateInfo/getUpgradeType: DEBUG - This is a hotfix...
XPD: 16.08.2013 15:45:30 CActionsCommon/GetProperty: DEBUG - Retrieved property: HOTFIXVERSION, Value: FP5
XPD: 16.08.2013 15:45:30 CActionsCommon/GetProperty: DEBUG - Retrieved property: HOTFIXACTION, Value: INSTALL
XPD: 16.08.2013 15:45:30 GenerateInfo/LogInstallType: DEBUG - Entering
XPD: 16.08.2013 15:45:30 CActionsCommon/GetProperty: DEBUG - Retrieved property: XPD_UPGRADE, Value: 5
XPD: 16.08.2013 15:45:30 GenerateInfo/LogInstallType: INFO - XPD_UPGRADE - HOTFIX_INSTALL
XPD: 16.08.2013 15:45:30 GenerateInfo/LogInstallType: DEBUG - Exiting
XPD: 16.08.2013 15:45:30 GenerateInfo/CheckForUpgrade: DEBUG - Exiting
MSI (s) (F0:24) [15:45:30:973]: Doing action: ValidateExternalJVM.5F3129E8_3AD4_4346_AEE6_A314E2DE64D9
Action ended 15:45:30: CheckForUpgrade.5F3129E8_3AD4_4346_AEE6_A314E2DE64D9. Return value 1.
MSI (s) (F0:F0) [15:45:30:973]: Invoking remote custom action. DLL: C:\WINDOWS\Installer\MSI5.tmp, Entrypoint: ValidateExternalJVM
Action start 15:45:30: ValidateExternalJVM.5F3129E8_3AD4_4346_AEE6_A314E2DE64D9.
XPD: 16.08.2013 15:45:31 GenerateInfo/ValidateExternalJVM: DEBUG - Entering
XPD: 16.08.2013 15:45:31 CActionsCommon/GetProperty: DEBUG - Retrieved property: RCP_INVALID_EXTERNAL_JVM_ERROR, Value: External VM is not valid - it must be a 1.5 or 1.6 Sun or IBM VM.	
XPD: 16.08.2013 15:45:31 GenerateInfo/ValidateExternalJVM: DEBUG - Exiting
MSI (s) (F0:24) [15:45:31:073]: Doing action: CostInitialize
Action ended 15:45:31: ValidateExternalJVM.5F3129E8_3AD4_4346_AEE6_A314E2DE64D9. Return value 1.
MSI (s) (F0:24) [15:45:31:083]: Machine policy value 'MaxPatchCacheSize' is 10
Action start 15:45:31: CostInitialize.
MSI (s) (F0:24) [15:45:31:083]: Note: 1: 1325 2: TempFolder 
MSI (s) (F0:24) [15:45:31:083]: Note: 1: 1325 2: TempFolder 
MSI (s) (F0:24) [15:45:31:083]: PROPERTY CHANGE: Adding CostingComplete property. Its value is '0'.
MSI (s) (F0:24) [15:45:31:083]: Note: 1: 2262 2: Patch 3: -2147287038 
MSI (s) (F0:24) [15:45:31:083]: Note: 1: 2205 2:  3: PatchPackage 
MSI (s) (F0:24) [15:45:31:083]: Note: 1: 2205 2:  3: MsiPatchHeaders 
MSI (s) (F0:24) [15:45:31:083]: Note: 1: 2205 2:  3: __MsiPatchFileList 
MSI (s) (F0:24) [15:45:31:083]: Note: 1: 2205 2:  3: PatchPackage 
MSI (s) (F0:24) [15:45:31:083]: Note: 1: 2228 2:  3: PatchPackage 4: SELECT `DiskId`, `PatchId`, `LastSequence` FROM `Media`, `PatchPackage` WHERE `Media`.`DiskId`=`PatchPackage`.`Media_` ORDER BY `DiskId`  
MSI (s) (F0:24) [15:45:31:083]: Doing action: ProcessHotFix
Action ended 15:45:31: CostInitialize. Return value 1.
MSI (s) (F0:F8) [15:45:31:083]: Invoking remote custom action. DLL: C:\WINDOWS\Installer\MSI6.tmp, Entrypoint: ProcessHotFix
Action start 15:45:31: ProcessHotFix.
Install type is INSTALL
FixIniTargetLocation is C:\Program Files\IBM\Lotus\Notes\\fix.ini
Error encountered - DONTINSTALLFIX set to TRUE
MSI (s) (F0:24) [15:45:31:243]: PROPERTY CHANGE: Deleting RESUME property. Its current value is '1'.
MSI (s) (F0:24) [15:45:31:243]: PROPERTY CHANGE: Deleting Resume property. Its current value is '1'.
MSI (s) (F0:24) [15:45:31:243]: PROPERTY CHANGE: Deleting UpdateStarted property. Its current value is '1'.
Action ended 15:45:31: ProcessHotFix. Return value 3.
Action ended 15:45:31: INSTALL. Return value 3.
Property(S): Type = Install
Property(S): DiskPrompt = [1]
Property(S): UpgradeCode = {5BA7CD07-4D6C-4D16-B1A6-2B50DD5F17AD}
Property(S): CostingComplete = 0
Property(S): types = installs
Property(S): typed = installed
Property(S): Preselected = 1
Property(S): Typing = installing
Property(S): ACTION = INSTALL
Property(S): SUPPORTDIR = C:\WINDOWS\TEMP\{7A48BD87-9F3D-4B6D-B247-7AE5883B530B}
Property(S): ISSETUPFILESCOMPLETED = Completed
Property(S): DONTINSTALLFIX = TRUE
Property(S): INCREMENTAL = FALSE
Property(S): INSTALLEDFIXVERSION = FP5
Property(S): NOTESINSTALLPATH = C:\Program Files\IBM\Lotus\Notes\
Property(S): NOTESNFOPATH = P:\def-lotus-notes-853-fp5\fp5\deploy\hotfix\ClientUpdate.nfo
Property(S): NOTESUPDATEPATH = P:\def-lotus-notes-853-fp5\fp5\deploy\hotfix\fixpack.cab
Property(S): HOTFIXVERSION = FP5
Property(S): FIXINI_LOCATION = C:\Program Files\IBM\Lotus\Notes\\fix.ini
Property(S): HOTFIXACTION = INSTALL
Property(S): LANGCODE = en
Property(S): PROV_LANGCODE = en
Property(S): PROVERRORMSG = Unexpected results have occurred during the provisioning operation.	
Property(S): PROVLOGSLOCMSG = For additional information, please refer to the logs:	
Property(S): RCP_PROVISIONING_PROCESS_ERROR = Failed to create provisioning process: %s	
Property(S): RCP_PROVISIONING_FILE_ERROR = File not found: %s Provisioning process failed to launch or was stopped before status could be determined.	
Property(S): RCP_FILE_NOT_FOUND_ERROR = File not found: %s	
Property(S): RCP_COPY_FILE_ERROR = Could not copy file: %s Old Path: %s, New Path: %s	
Property(S): RCP_BASE_PLUGIN_ERROR = RCP Base plug-in not found.	
Property(S): RCP_JVM_PLUGIN_ERROR = VM plug-in not found.	
Property(S): RCP_JVM_FEATURE_ERROR = VM feature version not found.	
Property(S): RCP_JVM_PARENT_FEATURE_ERROR = VM parent feature version not found.	
Property(S): RCP_REGISTRY_KEY_FIND_ERROR = Could not find registry key: %s	
Property(S): RCP_REGISTRY_VALUE_FIND_ERROR = Could not find registry value: %s	
Property(S): RCP_LOCATION_INVALID_ERROR = The specified directory location cannot contain non-ASCII characters or any of the following characters: 	
Property(S): RCP_LOCATION_INVALID_ALLOW_NONASCII_ERROR = The specified directory location cannot contain any of the following characters: 	
Property(S): RCP_INVALID_LOCATION_MSG = Invalid directory location: 	
Property(S): RCP_INVALID_EXTERNAL_JVM_ERROR = External VM is not valid - it must be a 1.5 or 1.6 Sun or IBM VM.	
Property(S): RCP_RUNNING_PLATFORM_DETECTED_ERROR = A running instance of the platform, with process id: %ld, has been detected.  Exit the running platform before continuing.	
Property(S): RCP_BACKUP_UPGRADE_ERROR = Failed attempting to move %s to %s.  File does not exist or may be in use.	
Property(S): RCP_PRODUCT_VERSION_ERROR = The product version was not found. Unable to perform version check.	
Property(S): RCP_PRODUCT_CODE_ERROR = The product code was not found. Unable to determine compatibility.	
Property(S): RCP_PRODUCT_COMPATIBLE_ERROR = A compatible product version was not found. Installed version is: %s.	
Property(S): RCP_MANIFEST_INVALID_ERROR = Unable to load the provisioning manifest file for processing.	
Property(S): RCP_XML_PARSER_ERROR = XML Parser Error: %s	
Property(S): RCP_TARGET_PRODUCT_NOT_FOUND_ERROR = Unable to find valid target platform.	
Property(S): RCP_PRODUCT_FIX_COMPATIBLE_ERROR = A compatible product fix was not found. Installed fix is: %s.	
Property(S): RCP_PRODUCT_FIX_NOT_FOUND_ERROR = The product fix level was not found. Unable to perform fix check.	
Property(S): VersionNT = 501
Property(S): TARGETDIR = C:\
Property(S): ALLUSERSPROFILE = C:\
Property(S): PRODUCT_TARGET_VERSION_SYNTAX_ERROR = Target version has invalid syntax: %s.
Property(S): RCP_LAUNCHER_PROCESS_ERROR = The launcher failed with an error. Refer to %s for more information.	
Property(S): RCP_PROVISIONING_LAUNCH_FAILURE = Failed to launch platform provisioning. Refer to %s for more information.	
Property(S): COREINSTALLDIR = C:\Program Files\IBM\Lotus\Notes\framework\
Property(S): CommonFilesFolder = C:\Program Files\Common Files\
Property(S): XPD_UPGRADE = 5
Property(S): ROOTDRIVE = C:\
Property(S): SOURCEDIR = C:\WINDOWS\TEMP\{DE51D6AC-571B-4E76-AA73-67EBB5298ED3}\
Property(S): PLATFORM_NOT_RUNNING = true
Property(S): XPD_USERNAME = pcpatch
Property(S): XPD_USERHOME = C:/Documents and Settings/Default User
Property(S): INSTALLCONFIGURATION = user
Property(S): INSTALLDIR = C:\Program Files\TempFolder\TempFolder\
Property(S): TempFolder = C:\WINDOWS\TEMP\
Property(S): ProgramFilesFolder = C:\Program Files\
Property(S): REMOVEUSERDATA = false
Property(S): PROVDEBUG = false
Property(S): DOMIGRATE = false
Property(S): IS_VALID_LOCATION = true
Property(S): RCPDATA = ${env.USERPROFILE}/Local Settings/Application Data/Lotus/Notes/Data/workspace
Property(S): RCP_WORKSPACE_LOCATION = C:/Documents and Settings/Default User/Local Settings/Application Data/Lotus/Notes/Data/workspace
Property(S): ADDLOCAL = CoreActions,UpdateFeature,Update_Files
Property(S): MsiUIHideCancel = 1
Property(S): MsiUIProgressOnly = 1
Property(S): UILevel = 3
Property(S): OriginalDatabase = C:\tmp\fp5\ClientUpdate.msi
Property(S): DATABASE = C:\WINDOWS\Installer\1109e.msi
Property(S): Privileged = 1
Property(S): RedirectedDllSupport = 2
Property(S): MsiWin32AssemblySupport = 5.1.2600.5512
Property(S): SourceDir = C:\WINDOWS\TEMP\{DE51D6AC-571B-4E76-AA73-67EBB5298ED3}\
Property(S): Date = 16.08.2013
Property(S): USERPROFILE = C:\
Property(S): WindowsFolder = C:\WINDOWS\
Property(S): Time = 15:45:31
Property(S): TTCSupport = 1
Property(S): WindowsFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\WINDOWS\
Property(S): SystemFolder.98CB24AD_52FB_DB5F_FF1F_C8B3B9A1E18E = C:\WINDOWS\system32\
Property(S): ALLUSERS = 1
Property(S): type = install
Property(S): WindowsFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\WINDOWS\
Property(S): SystemFolder.63E949F6_03BC_5C40_FF1F_C8B3B9A1E18E = C:\WINDOWS\system32\
Property(S): XPD_INSTALL_LOCATION.5F3129E8_3AD4_4346_AEE6_A314E2DE64D9 = C:/Program Files/IBM/Lotus/Notes/framework/
Property(S): ALLUSERS.5F3129E8_3AD4_4346_AEE6_A314E2DE64D9 = 2
Property(S): BUILD_ExpeditorCoreActions.5F3129E8_3AD4_4346_AEE6_A314E2DE64D9 = 6.2.3.20130726.0900
Property(S): HIDE_PARTIAL_RESULTS.5F3129E8_3AD4_4346_AEE6_A314E2DE64D9 = false
Property(S): PROVDEBUG.5F3129E8_3AD4_4346_AEE6_A314E2DE64D9 = false
Property(S): REMOVEUSERDATA.5F3129E8_3AD4_4346_AEE6_A314E2DE64D9 = false
Property(S): SKIPPROVISIONINGACTION.5F3129E8_3AD4_4346_AEE6_A314E2DE64D9 = false
Property(S): SUPPRESSPATCHERRORS.5F3129E8_3AD4_4346_AEE6_A314E2DE64D9 = false
Property(S): SecureCustomProperties.5F3129E8_3AD4_4346_AEE6_A314E2DE64D9 = XPD_INSTALL_LOCATION.5F3129E8_3AD4_4346_AEE6_A314E2DE64D9;XPD_INSTALL_LOCATION.5F3129E8_3AD4_4346_AEE6_A314E2DE64D9;XPD_INSTALL_LOCATION.5F3129E8_3AD4_4346_AEE6_A314E2DE64D9;HOTFIX_VERSION.5F3129E8_3AD4_4346_AEE6_A314E2DE64D9;HOTFIX_VERSION.5F3129E8_3AD4_4346_AEE6_A314E2DE64D9;HOTFIX_VERSION.5F3129E8_3AD4_4346_AEE6_A314E2DE64D9;HOTFIX_VERSION.5F3129E8_3AD4_4346_AEE6_A314E2DE64D9;HOTFIX_VERSION.5F3129E8_3AD4_4346_AEE6_A314E2DE64D9;HOTFIX_VERSION.5F3129E8_3AD4_4346_AEE6_A314E2DE64D9;HOTFIX_VERSION.5F3129E8_3AD4_4346_AEE6_A314E2DE64D9;HOTFIX_VERSION.5F3129E8_3AD4_4346_AEE6_A314E2DE64D9;HOTFIX_VERSION.5F3129E8_3AD4_4346_AEE6_A314E2DE64D9;HOTFIX_VERSION.5F3129E8_3AD4_4346_AEE6_A314E2DE64D9;XPD_INSTALL_LOCATION.5F3129E8_3AD4_4346_AEE6_A314E2DE64D9;XPD_INSTALL_LOCATION.5F3129E8_3AD4_4346_AEE6_A314E2DE64D9;XPD_INSTALL_LOCATION.5F3129E8_3AD4_4346_AEE6_A314E2DE64D9
Property(S): ShowCustomFeatures.5F3129E8_3AD4_4346_AEE6_A314E2DE64D9 = false
Property(S): WindowsFolder.9BAE13A2_E7AF_D6C3_FF1F_C8B3B9A1E18E = C:\WINDOWS\
Property(S): SystemFolder.9BAE13A2_E7AF_D6C3_FF1F_C8B3B9A1E18E = C:\WINDOWS\system32\
Property(S): WindowsFolder.68B7C6D9_1DF2_54C1_FF1F_C8B3B9A1E18E = C:\WINDOWS\
Property(S): SystemFolder.68B7C6D9_1DF2_54C1_FF1F_C8B3B9A1E18E = C:\WINDOWS\system32\
Property(S): ColorBits = 32
Property(S): TextHeight = 16
Property(S): BorderSide = 1
Property(S): BorderTop = 1
Property(S): CaptionHeight = 26
Property(S): ScreenY = 768
Property(S): ScreenX = 1024
Property(S): SystemLanguageID = 1031
Property(S): ComputerName = STUTE-VM-032
Property(S): UserLanguageID = 1031
Property(S): UserSID = S-1-5-21-527237240-1060284298-1957994488-1028
Property(S): LogonUser = pcpatch
Property(S): AdminUser = 1
Property(S): VirtualMemory = 1076
Property(S): PhysicalMemory = 512
Property(S): Intel = 6
Property(S): ShellAdvtSupport = 1
Property(S): ISCHECKFORPRODUCTUPDATES = 1
Property(S): _BrowseProperty = 0
Property(S): ApplicationUsers = AllUsers
Property(S): LAPAgree = No
Property(S): LAPEnAgree = No
Property(S): AgreeToLicense = No
Property(S): _IsMaintenance = Change
Property(S): RestartManagerOption = CloseRestart
Property(S): IS_SQLSERVER_USERNAME = sa
Property(S): IS_SQLSERVER_AUTHENTICATION = 0
Property(S): SetupType = Typical
Property(S): _IsSetupTypeMin = Typical
Property(S): Display_IsBitmapDlg = 1
Property(S): ARPPRODUCTICON = ARPPRODUCTICON.exe
Property(S): CoreInstall = FALSE
Property(S): CoreUninstall = FALSE
Property(S): DWUSINTERVAL = 30
Property(S): DWUSLINK = CEDC67E8A97CA7EF49AC40D84ECC978FDEFC978F791CD008CE3C978FD90C80880E8CC09FBEAC
Property(S): DefaultUIFont = Tahoma8
Property(S): DialogCaption = InstallShield for Windows Installer
Property(S): DisplayNameCustom = Custom
Property(S): OLEAdvtSupport = 1
Property(S): DisplayNameMinimal = Minimal
Property(S): DisplayNameTypical = Typical
Property(S): EnableUserControl = 1
Property(S): ErrorDialog = SetupError
Property(S): HOTFIX = true
Property(S): HOTFIXTEXT = Ensure that you are running installer from correct location. Fix.ini can't be located from expected location.
Property(S): INSTALLEDVERSION = 
Property(S): INSTALLLEVEL = 100
Property(S): ISVROOT_PORT_NO = 0
Property(S): IS_COMPLUS_PROGRESSTEXT_COST = Costing COM+ application: [1]
Property(S): IS_COMPLUS_PROGRESSTEXT_INSTALL = Installing COM+ application: [1]
Property(S): IS_COMPLUS_PROGRESSTEXT_UNINSTALL = Uninstalling COM+ application: [1]
Property(S): IS_FILESINUSE = Some files that need to be updated are currently in use.
Property(S): IS_PROGMSG_XML_COSTING = Costing XML files...
Property(S): IS_PROGMSG_XML_CREATE_FILE = Creating XML file %s...
Property(S): IS_PROGMSG_XML_FILES = Performing XML file changes...
Property(S): IS_PROGMSG_XML_REMOVE_FILE = Removing XML file %s...
Property(S): IS_PROGMSG_XML_ROLLBACK_FILES = Rolling back XML file changes...
Property(S): IS_PROGMSG_XML_UPDATE_FILE = Updating XML file %s...
Property(S): InstallChoice = AR
Property(S): LAPDialog = LAP_withNonIBM
Property(S): Manufacturer = Your Company Name
Property(S): NOTESFIXPATH = TBD
Property(S): NewProperty1 = 0
Property(S): PIDTemplate = 12345<###-%%%%%%%>@@@@@
Property(S): PROGMSG_IIS_CREATEAPPPOOL = Creating application pool %s
Property(S): PROGMSG_IIS_CREATEAPPPOOLS = Creating application Pools...
Property(S): PROGMSG_IIS_CREATEVROOT = Creating IIS virtual directory %s
Property(S): PROGMSG_IIS_CREATEVROOTS = Creating IIS virtual directories...
Property(S): PROGMSG_IIS_CREATEWEBSERVICEEXTENSION = Creating web service extension
Property(S): PROGMSG_IIS_CREATEWEBSERVICEEXTENSIONS = Creating web service extensions...
Property(S): PROGMSG_IIS_EXTRACT = Extracting information for IIS virtual directories...
Property(S): PROGMSG_IIS_EXTRACTDONE = Extracted information for IIS virtual directories...
Property(S): PROGMSG_IIS_EXTRACTDONEz = Extracted information for IIS virtual directories...
Property(S): PROGMSG_IIS_EXTRACTzDONE = Extracted information for IIS virtual directories...
Property(S): PROGMSG_IIS_REMOVEAPPPOOL = Removing application pool
Property(S): PROGMSG_IIS_REMOVEAPPPOOLS = Removing application pools...
Property(S): PROGMSG_IIS_REMOVESITE = Removing web site at port %d
Property(S): PROGMSG_IIS_REMOVEVROOT = Removing IIS virtual directory %s
Property(S): PROGMSG_IIS_REMOVEVROOTS = Removing IIS virtual directories...
Property(S): PROGMSG_IIS_REMOVEWEBSERVICEEXTENSION = Removing web service extension
Property(S): PROGMSG_IIS_REMOVEWEBSERVICEEXTENSIONS = Removing web service extensions...
Property(S): PROGMSG_IIS_ROLLBACKAPPPOOLS = Rolling back application pools...
Property(S): PROGMSG_IIS_ROLLBACKVROOTS = Rolling back virtual directory and web site changes...
Property(S): GPTSupport = 1
Property(S): PROGMSG_IIS_ROLLBACKWEBSERVICEEXTENSIONS = Rolling back web service extensions...
Property(S): ProductCode = {7A48BD87-9F3D-4B6D-B247-7AE5883B530B}
Property(S): ProductID = none
Property(S): ProductLanguage = 1033
Property(S): ProductName = IBM Lotus Notes Client Update Installer
Property(S): ProductVersion = 1.00.0001
Property(S): ProgressType0 = install
Property(S): ProgressType1 = Installing
Property(S): ProgressType2 = installed
Property(S): ProgressType3 = installs
Property(S): RebootYesNo = Yes
Property(S): ReinstallModeText = omus
Property(S): SHOWLAUNCHPROGRAM = 0
Property(S): SUPPRESSPATCHERRORS = true
Property(S): SecureCustomProperties = ##ID_STRING4##;SUPPORTDIR
Property(S): String_Install = Install
Property(S): String_Msg_RunFromWrongLocation = Ensure that you are running installer from correct location. Fix.ini can't be located from expected location.
Property(S): String_Msg_WrongVersionNotesInstalled = Error - version mismatch. Expected to find version: "%s", found version(s): "%s".
Property(S): String_Uninstall = Uninstall
Property(S): FontsFolder = C:\WINDOWS\Fonts\
Property(S): String_install = install
Property(S): String_installed = installed
Property(S): String_installing = installing
Property(S): String_installs = installs
Property(S): String_uninstall = uninstall
Property(S): String_uninstalled = uninstalled
Property(S): String_uninstalling = uninstalling
Property(S): String_uninstalls = uninstalls
Property(S): TARGETUPGRADECODE1 = {D8641E4B-77AF-4EAC-9137-8D4DCB1478E2}
Property(S): TARGETUPGRADECODE2 = {5BA7CD07-4D6C-4D16-B1A6-2B50DD5F17AD}
Property(S): TYPE = INSTALL
Property(S): _BrowseProperty1 = 0
Property(S): _BrowseProperty2 = 0
Property(S): ARPINSTALLLOCATION = C:\Program Files\TempFolder\TempFolder\
Property(S): TemplateFolder = C:\Documents and Settings\All Users\Templates\
Property(S): DesktopFolder = C:\Documents and Settings\All Users\Desktop\
Property(S): StartMenuFolder = C:\Documents and Settings\All Users\Start Menu\
Property(S): ProgramMenuFolder = C:\Documents and Settings\All Users\Start Menu\Programs\
Property(S): StartupFolder = C:\Documents and Settings\All Users\Start Menu\Programs\Startup\
Property(S): AdminToolsFolder = C:\Documents and Settings\All Users\Start Menu\Programs\Administrative Tools\
Property(S): CommonAppDataFolder = C:\Documents and Settings\All Users\Application Data\
Property(S): RemoteAdminTS = 1
Property(S): COMPANYNAME = Stute
Property(S): System16Folder = C:\WINDOWS\system\
Property(S): USERNAME = Stute
Property(S): SystemFolder = C:\WINDOWS\system32\
Property(S): WindowsVolume = C:\
Property(S): MsiNTProductType = 1
Property(S): ServicePackLevelMinor = 0
Property(S): ServicePackLevel = 3
Property(S): WindowsBuild = 2600
Property(S): VersionMsi = 3.01
Property(S): VersionDatabase = 200
Property(S): CLIENTPROCESSID = 1700
Property(S): CLIENTUILEVEL = 2
Property(S): SETUPEXEDIR = P:\def-lotus-notes-853-fp5\fp5
Property(S): CURRENTDIRECTORY = C:\WINDOWS\system32
Property(S): REBOOTPROMPT = S
Property(S): PackagecodeChanging = 1
Property(S): ProductState = -1
Property(S): PackageCode = {7571CC20-D85A-4398-8CBB-67034097ECEA}
MSI (s) (F0:24) [15:45:31:304]: Note: 1: 1708 
MSI (s) (F0:24) [15:45:31:304]: Product: IBM Lotus Notes Client Update Installer -- Installation operation failed.

MSI (s) (F0:24) [15:45:31:304]: Cleaning up uninstalled install packages, if any exist
MSI (s) (F0:24) [15:45:31:304]: MainEngineThread is returning 1603
MSI (s) (F0:20) [15:45:31:304]: Destroying RemoteAPI object.
MSI (s) (F0:7C) [15:45:31:304]: Custom Action Manager thread ending.
=== Logging stopped: 16.08.2013  15:45:31 ===
MSI (c) (E8:C4) [15:45:31:304]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied.  Counter after decrement: -1
MSI (c) (E8:C4) [15:45:31:314]: MainEngineThread is returning 1603
=== Verbose logging stopped: 16.08.2013  15:45:31 ===

 
Vinc
Beiträge: 19
Registriert: 12 Aug 2013, 17:35

Re: Notes 8.5.3 Fixpack installieren unter XP mit opsi

Beitrag von Vinc »

da ich auf Win XP probleme haben bringt auch runelevated nichts da es unter Nt5 keine wirkung hat.
Benutzeravatar
koepkek
uib-Team
Beiträge: 257
Registriert: 11 Jan 2012, 11:27

Re: Notes 8.5.3 Fixpack installieren unter XP mit opsi

Beitrag von koepkek »

Hallo
nur eine Idee

msiexec /passive /i "ClientUpdate.msi" /l*v C:\tmp\lotus-notes-853-fp5.txt

statt /passive mal mit /qb versuchen

Gruß Karsten Köpke


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


Vinc
Beiträge: 19
Registriert: 12 Aug 2013, 17:35

Re: Notes 8.5.3 Fixpack installieren unter XP mit opsi

Beitrag von Vinc »

Neue Erkenntnis. Ich habe die Windows Fw ausgeschaltet und das gaze im Userkontext als angemeldeter admin ausgeführt.

Die installation lief sauber durch.
Also hängt es nur an der startup installation.
Antworten