Paket wird über Depot nicht installiert

dodic
Posts: 506
Joined: 03. Feb 2012, 10:51
Location: Salzgitter
Contact:

Paket wird über Depot nicht installiert

Post by dodic » 08. Nov 2013, 12:28

Hallo,

ich habe ein Paket erstellt, bei der Installation eine InstallAware ist. Wenn ich das Paket unter ../commonfiles/setup32 ausführe funktioniert alles wunderbar.

Nun haben wir das Paket in Empirum eingebunden. Wenn ich das Paket über das Depot installieren möchte, wird die Installationsroutine zwar aufgerufen und man sieht auch das etwas passiert aber sobald das Setup fertig ist, ist kein Icon auf dem Desktop, nichts unter den Pfaden zu finden und auch keine RegSchlüssel geschrieben.

Jemand eine Idee?

User avatar
r.wiegel
Posts: 896
Joined: 05. Feb 2010, 13:45
Location: Regensburg
Contact:

Re: Paket wird über Depot nicht installiert

Post by r.wiegel » 08. Nov 2013, 13:58

Hallo,

wird die Installation mitgeloggt?
Was steht in SetupErrorLog?

Viele Grüße
Roman
Viele Grüße
Roman Wiegel
IT-Consultant

MR Datentechnik - Vertriebs- und Service GmbH

Stefan
Posts: 127
Joined: 03. May 2013, 11:27
Contact:

Re: Paket wird über Depot nicht installiert

Post by Stefan » 08. Nov 2013, 15:57

Hallo,

könnte sein das es dann eine Per-User installation ist. Das heißt, das Paket wird als Systemaccount ausgeführt und demzufolge bekommt dieser dann den Link und die Einträge. Wen dem so ist am besten prüfen, ob es sich per machine installieren lässt. Ist es eine MSI?

Grüße Stefan

dodic
Posts: 506
Joined: 03. Feb 2012, 10:51
Location: Salzgitter
Contact:

Re: Paket wird über Depot nicht installiert

Post by dodic » 13. Nov 2013, 15:17

Hey,

danke für eure Rückmeldung, bin weiterhin keiner Lösung näher gekommen...

Also in der SetupErrorLog steht gar nichts...

@Stefan

Wir haben versucht das Setup ganz normal als System User auszuführen, dies gelingt nicht, da das Programm irgendwie nicht installiert wird. Wenn ich das Setup mit meinem User mit CallRunAs aufrufe und auch ich gerade angemeldet bin funktioniert es. Sobald ich das Paket an einem anderen PC aufrufe und über das Depot installieren möchte funktioniert es nicht. Dort ist es so, dass nicht ich sondern ein Kollege angemeldet ist aber das Setup wieder mit meinem User mit CallRunAs aufgerufen wird.

Das Setup ist eine InstallAware routine. Wenn ich das Setup entpacke habe ich auch eine MSI aber die ruft wiederum auch die InstallAware routine auf, ein bisschen strange...

Habt ihr noch eine Idee?

Stefan
Posts: 127
Joined: 03. May 2013, 11:27
Contact:

Re: Paket wird über Depot nicht installiert

Post by Stefan » 13. Nov 2013, 15:48

versucht mal folgendes

Dein Kollege soll sich anmelden und die Installation der msi mit runas und deinen Credentials starten.
Bitte dann eingeben "msiexec /i nameDerMSI.msi ALLUSERS=1

Wenns so geht, dies dann auch im Package so eingeben.

dodic
Posts: 506
Joined: 03. Feb 2012, 10:51
Location: Salzgitter
Contact:

Re: Paket wird über Depot nicht installiert

Post by dodic » 13. Nov 2013, 18:53

Also ich habe nun versucht die entpacke .msi aus der Setup.exe zu nutzen. Sobald ich den von dir genannten Befehl nutze, startet zwar die Setuproutine, allerdings nicht im Silent Modus sondern ich muss alle Klicks tätigen..

Ist es für den Entwickler der Software sehr aufwendig die Installation als Per Machine zu erstellen statt Per User? Soweit ich verstanden habe, wird bei einer Per User Installation, Daten usw. direkt unter dem User installiert; ist das richtig?

User avatar
r.wiegel
Posts: 896
Joined: 05. Feb 2010, 13:45
Location: Regensburg
Contact:

Re: Paket wird über Depot nicht installiert

Post by r.wiegel » 13. Nov 2013, 20:04

Da fehlt noch die Anzeigeoption /qn (fullsilent) oder /qb! (keine Steuerungselemente). Mehr dazu mit cmd> msiexec /?
Um zu testen, ob eine Installationsroutine mit System installierbar ist, kann man vorab testen:
cmd> psexec /s cmd
danach läuft die Instanz unter System und eine Installation kann getestet werden.

Viele Grüße
Roman
Viele Grüße
Roman Wiegel
IT-Consultant

MR Datentechnik - Vertriebs- und Service GmbH

dodic
Posts: 506
Joined: 03. Feb 2012, 10:51
Location: Salzgitter
Contact:

Re: Paket wird über Depot nicht installiert

Post by dodic » 14. Nov 2013, 08:57

Also ich habe nun versucht das Programm mit PSEXEC zu installieren. Es funktioniert nicht, selbes wie bei der Installation im Depot; ich rufe den Taskmanager auf, sehe das die Dateien ausgeführt werden und nach ca. 1min ist alles weg, keine Fehlermeldung, keine Icons, keine Programme... Bin langsam am verzweifelen...

Habe es so versucht;

Code: Select all

setup.msi /qn ALLUSERS=1
setup.msi /qb! ALLUSERS=1

User avatar
r.wiegel
Posts: 896
Joined: 05. Feb 2010, 13:45
Location: Regensburg
Contact:

Re: Paket wird über Depot nicht installiert

Post by r.wiegel » 14. Nov 2013, 09:07

geht es so im Paket?:

Code: Select all

Call MsiExec /I "%SRC%\setup.msi" ALLUSERS="1"   REBOOT=REALLYSUPPRESS ARPSYSTEMCOMPONENT=1 /qb! /Li "%MSILogFile%"
Was für ein Programm ist das?
Viele Grüße
Roman Wiegel
IT-Consultant

MR Datentechnik - Vertriebs- und Service GmbH

dodic
Posts: 506
Joined: 03. Feb 2012, 10:51
Location: Salzgitter
Contact:

Re: Paket wird über Depot nicht installiert

Post by dodic » 15. Nov 2013, 11:15

Funktioniert leider auch nicht.. FM: Es sind nicht alle Optionen korrekt übertragen wurden.

Ich habe es auch ohne Schnickschnack versucht, einfach nur:

Code: Select all

Call msiexec /i "%SRC%\setup.msi" /qn
Auch mit:

Code: Select all

Call msiexec /i "%SRC%\setup.msi" /qb!
Das Programm heißt ChameleoPro.

User avatar
r.wiegel
Posts: 896
Joined: 05. Feb 2010, 13:45
Location: Regensburg
Contact:

Re: Paket wird über Depot nicht installiert

Post by r.wiegel » 15. Nov 2013, 11:36

dann bitte als Admin lokal die Zeile aufrufen:
cmd> msiexec /i "%SRC%\setup.msi" /qb! /l*v "%Temp%\FullLog.log"
Dann können wir aus der Log-Datei mehr erfahren, was die Installationsroutine so treibt.
Viele Grüße
Roman Wiegel
IT-Consultant

MR Datentechnik - Vertriebs- und Service GmbH

dodic
Posts: 506
Joined: 03. Feb 2012, 10:51
Location: Salzgitter
Contact:

Re: Paket wird über Depot nicht installiert

Post by dodic » 15. Nov 2013, 12:00

Anbei die LogFiles. Einmal aufgerufen mit:

Hinweis: Mit /gb! bleibt die Installation stehen bei der Sprachauswahl, bei /qn läuft die Installation durch und die Anwendung wird installiert, wie ich bereits auch schon im Ausgangspost geschrieben habe. Sobald man die Anwendung als System User installiert läuft die Installation zwar durch aber es wurden keine Reg Einträge, Programmeinträge etc gemacht.

Code: Select all

msiexec /i setup.msi /qb! /l*v "%Temp%\FullLog.log"

Code: Select all

=== Verbose logging started: 15.11.2013  11:51:34  Build type: SHIP UNICODE 5.00.7601.00  Calling process: C:\Windows\system32\msiexec.exe ===
MSI (c) (9C:40) [11:51:34:493]: Font created.  Charset: Req=0, Ret=0, Font: Req=MS Shell Dlg, Ret=MS Shell Dlg

MSI (c) (9C:40) [11:51:34:493]: Font created.  Charset: Req=0, Ret=0, Font: Req=MS Shell Dlg, Ret=MS Shell Dlg

MSI (c) (9C:9C) [11:51:34:509]: Resetting cached policy values
MSI (c) (9C:9C) [11:51:34:524]: Machine policy value 'Debug' is 0
MSI (c) (9C:9C) [11:51:34:524]: ******* RunEngine:
           ******* Product: C:\Users\dominik\Desktop\chameleoprosalzgitter.msi
           ******* Action: 
           ******* CommandLine: **********
MSI (c) (9C:9C) [11:51:34:540]: Client-side and UI is none or basic: Running entire install on the server.
MSI (c) (9C:9C) [11:51:34:540]: Grabbed execution mutex.
MSI (c) (9C:9C) [11:51:34:571]: Cloaking enabled.
MSI (c) (9C:9C) [11:51:34:571]: Attempting to enable all disabled privileges before calling Install on Server
MSI (c) (9C:9C) [11:51:34:587]: Incrementing counter to disable shutdown. Counter after increment: 0
MSI (s) (8C:78) [11:51:34:587]: Running installation inside multi-package transaction C:\Users\dominik\Desktop\chameleoprosalzgitter.msi
MSI (s) (8C:78) [11:51:34:587]: Grabbed execution mutex.
MSI (s) (8C:BC) [11:51:34:602]: Resetting cached policy values
MSI (s) (8C:BC) [11:51:34:602]: Machine policy value 'Debug' is 0
MSI (s) (8C:BC) [11:51:34:602]: ******* RunEngine:
           ******* Product: C:\Users\dominik\Desktop\chameleoprosalzgitter.msi
           ******* Action: 
           ******* CommandLine: **********
MSI (s) (8C:BC) [11:51:34:602]: Machine policy value 'DisableUserInstalls' is 0
MSI (s) (8C:BC) [11:51:34:618]: Machine policy value 'LimitSystemRestoreCheckpointing' is 0
MSI (s) (8C:BC) [11:51:34:618]: SRSetRestorePoint skipped for this transaction.
MSI (s) (8C:BC) [11:51:34:618]: End dialog not enabled
MSI (s) (8C:BC) [11:51:34:618]: Original package ==> C:\Users\dominik\Desktop\chameleoprosalzgitter.msi
MSI (s) (8C:BC) [11:51:34:618]: Package we're running from ==> C:\Windows\Installer\3d98c.msi
MSI (s) (8C:BC) [11:51:34:618]: APPCOMPAT: Uninstall Flags override found.
MSI (s) (8C:BC) [11:51:34:618]: APPCOMPAT: Uninstall VersionNT override found.
MSI (s) (8C:BC) [11:51:34:618]: APPCOMPAT: Uninstall ServicePackLevel override found.
MSI (s) (8C:BC) [11:51:34:618]: APPCOMPAT: looking for appcompat database entry with ProductCode '{88A78260-C44D-46C3-B4E9-CA5CB8B55E9C}'.
MSI (s) (8C:BC) [11:51:34:618]: APPCOMPAT: no matching ProductCode found in database.
MSI (s) (8C:BC) [11:51:34:618]: MSCOREE not loaded loading copy from system32
MSI (s) (8C:BC) [11:51:34:618]: Note: 1: 2262 2: File 3: -2147287038 
MSI (s) (8C:BC) [11:51:34:618]: Note: 1: 2205 2:  3: MsiFileHash 
MSI (s) (8C:BC) [11:51:34:618]: Machine policy value 'DisablePatch' is 0
MSI (s) (8C:BC) [11:51:34:618]: Machine policy value 'AllowLockdownPatch' is 0
MSI (s) (8C:BC) [11:51:34:618]: Machine policy value 'DisableLUAPatching' is 0
MSI (s) (8C:BC) [11:51:34:618]: Machine policy value 'DisableFlyWeightPatching' is 0
MSI (s) (8C:BC) [11:51:34:618]: APPCOMPAT: looking for appcompat database entry with ProductCode '{88A78260-C44D-46C3-B4E9-CA5CB8B55E9C}'.
MSI (s) (8C:BC) [11:51:34:618]: APPCOMPAT: no matching ProductCode found in database.
MSI (s) (8C:BC) [11:51:34:618]: Transforms are not secure.
MSI (s) (8C:BC) [11:51:34:618]: Note: 1: 2205 2:  3: Control 
MSI (s) (8C:BC) [11:51:34:618]: PROPERTY CHANGE: Adding MsiLogFileLocation property. Its value is 'C:\temp\FullLog.log'.
MSI (s) (8C:BC) [11:51:34:618]: Command Line: CURRENTDIRECTORY=C:\Users\dominik CLIENTUILEVEL=2 CLIENTPROCESSID=2716 
MSI (s) (8C:BC) [11:51:34:618]: PROPERTY CHANGE: Adding PackageCode property. Its value is '{51A3CFDE-7A9C-4EAB-B77C-9979DF68EB9C}'.
MSI (s) (8C:BC) [11:51:34:618]: Product Code passed to Engine.Initialize:           '{88A78260-C44D-46C3-B4E9-CA5CB8B55E9C}'
MSI (s) (8C:BC) [11:51:34:618]: Product Code from property table before transforms: '{88A78260-C44D-46C3-B4E9-CA5CB8B55E9C}'
MSI (s) (8C:BC) [11:51:34:618]: Product Code from property table after transforms:  '{88A78260-C44D-46C3-B4E9-CA5CB8B55E9C}'
MSI (s) (8C:BC) [11:51:34:618]: Product registered: entering maintenance mode
MSI (s) (8C:BC) [11:51:34:618]: Determined that existing product (either this product or the product being upgraded with a patch) is installed per-machine.
MSI (s) (8C:BC) [11:51:34:618]: PROPERTY CHANGE: Adding ALLUSERS property. Its value is '1'.
MSI (s) (8C:BC) [11:51:34:618]: Product {88A78260-C44D-46C3-B4E9-CA5CB8B55E9C} is admin assigned: LocalSystem owns the publish key.
MSI (s) (8C:BC) [11:51:34:618]: Product {88A78260-C44D-46C3-B4E9-CA5CB8B55E9C} is managed.
MSI (s) (8C:BC) [11:51:34:618]: MSI_LUA: Credential prompt not required, user is an admin
MSI (s) (8C:BC) [11:51:34:618]: PROPERTY CHANGE: Adding ProductState property. Its value is '5'.
MSI (s) (8C:BC) [11:51:34:618]: PROPERTY CHANGE: Adding ProductToBeRegistered property. Its value is '1'.
MSI (s) (8C:BC) [11:51:34:618]: Entering CMsiConfigurationManager::SetLastUsedSource.
MSI (s) (8C:BC) [11:51:34:618]: Specifed source is already in a list.
MSI (s) (8C:BC) [11:51:34:618]: User policy value 'SearchOrder' is 'nmu'
MSI (s) (8C:BC) [11:51:34:618]: Machine policy value 'DisableBrowse' is 0
MSI (s) (8C:BC) [11:51:34:618]: Machine policy value 'AllowLockdownBrowse' is 0
MSI (s) (8C:BC) [11:51:34:618]: Adding new sources is allowed.
MSI (s) (8C:BC) [11:51:34:618]: Package name retrieved from configuration data: 'chameleoprosalzgitter.msi'
MSI (s) (8C:BC) [11:51:34:618]: Note: 1: 2205 2:  3: Error 
MSI (s) (8C:BC) [11:51:34:618]: Note: 1: 2262 2: AdminProperties 3: -2147287038 
MSI (s) (8C:BC) [11:51:34:618]: Machine policy value 'DisableMsi' is 0
MSI (s) (8C:BC) [11:51:34:618]: Machine policy value 'AlwaysInstallElevated' is 0
MSI (s) (8C:BC) [11:51:34:618]: User policy value 'AlwaysInstallElevated' is 0
MSI (s) (8C:BC) [11:51:34:618]: Product {88A78260-C44D-46C3-B4E9-CA5CB8B55E9C} is admin assigned: LocalSystem owns the publish key.
MSI (s) (8C:BC) [11:51:34:618]: Product {88A78260-C44D-46C3-B4E9-CA5CB8B55E9C} is managed.
MSI (s) (8C:BC) [11:51:34:618]: Running product '{88A78260-C44D-46C3-B4E9-CA5CB8B55E9C}' with elevated privileges: Product is assigned.
MSI (s) (8C:BC) [11:51:34:618]: PROPERTY CHANGE: Adding CURRENTDIRECTORY property. Its value is 'C:\Users\dominik'.
MSI (s) (8C:BC) [11:51:34:618]: PROPERTY CHANGE: Adding CLIENTUILEVEL property. Its value is '2'.
MSI (s) (8C:BC) [11:51:34:618]: PROPERTY CHANGE: Adding CLIENTPROCESSID property. Its value is '2716'.
MSI (s) (8C:BC) [11:51:34:618]: Machine policy value 'DisableAutomaticApplicationShutdown' is 0
MSI (s) (8C:BC) [11:51:34:618]: PROPERTY CHANGE: Adding MsiRestartManagerSessionKey property. Its value is '7975f9c104c96441831d0dac2e972083'.
MSI (s) (8C:BC) [11:51:34:618]: RESTART MANAGER: Session opened.
MSI (s) (8C:BC) [11:51:34:618]: TRANSFORMS property is now: 
MSI (s) (8C:BC) [11:51:34:618]: PROPERTY CHANGE: Adding PRODUCTLANGUAGE property. Its value is '0'.
MSI (s) (8C:BC) [11:51:34:618]: PROPERTY CHANGE: Adding VersionDatabase property. Its value is '100'.
MSI (s) (8C:BC) [11:51:34:618]: SHELL32::SHGetFolderPath returned: C:\Users\dominik\AppData\Roaming
MSI (s) (8C:BC) [11:51:34:618]: SHELL32::SHGetFolderPath returned: C:\Users\dominik\Favorites
MSI (s) (8C:BC) [11:51:34:618]: SHELL32::SHGetFolderPath returned: C:\Users\dominik\AppData\Roaming\Microsoft\Windows\Network Shortcuts
MSI (s) (8C:BC) [11:51:34:618]: SHELL32::SHGetFolderPath returned: C:\Users\dominik\Documents
MSI (s) (8C:BC) [11:51:34:634]: SHELL32::SHGetFolderPath returned: C:\Users\dominik\AppData\Roaming\Microsoft\Windows\Printer Shortcuts
MSI (s) (8C:BC) [11:51:34:634]: SHELL32::SHGetFolderPath returned: C:\Users\dominik\AppData\Roaming\Microsoft\Windows\Recent
MSI (s) (8C:BC) [11:51:34:634]: SHELL32::SHGetFolderPath returned: C:\Users\dominik\AppData\Roaming\Microsoft\Windows\SendTo
MSI (s) (8C:BC) [11:51:34:634]: SHELL32::SHGetFolderPath returned: C:\Users\dominik\AppData\Roaming\Microsoft\Windows\Templates
MSI (s) (8C:BC) [11:51:34:634]: SHELL32::SHGetFolderPath returned: C:\ProgramData
MSI (s) (8C:BC) [11:51:34:634]: SHELL32::SHGetFolderPath returned: C:\Users\dominik\AppData\Local
MSI (s) (8C:BC) [11:51:34:634]: SHELL32::SHGetFolderPath returned: C:\Users\dominik\Pictures
MSI (s) (8C:BC) [11:51:34:634]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative Tools
MSI (s) (8C:BC) [11:51:34:634]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
MSI (s) (8C:BC) [11:51:34:634]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs
MSI (s) (8C:BC) [11:51:34:634]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu
MSI (s) (8C:BC) [11:51:34:634]: SHELL32::SHGetFolderPath returned: C:\Users\Public\Desktop
MSI (s) (8C:BC) [11:51:34:634]: SHELL32::SHGetFolderPath returned: C:\Users\dominik\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Administrative Tools
MSI (s) (8C:BC) [11:51:34:634]: SHELL32::SHGetFolderPath returned: C:\Users\dominik\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
MSI (s) (8C:BC) [11:51:34:634]: SHELL32::SHGetFolderPath returned: C:\Users\dominik\AppData\Roaming\Microsoft\Windows\Start Menu\Programs
MSI (s) (8C:BC) [11:51:34:634]: SHELL32::SHGetFolderPath returned: C:\Users\dominik\AppData\Roaming\Microsoft\Windows\Start Menu
MSI (s) (8C:BC) [11:51:34:634]: SHELL32::SHGetFolderPath returned: C:\Users\dominik\Desktop
MSI (s) (8C:BC) [11:51:34:634]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Templates
MSI (s) (8C:BC) [11:51:34:634]: SHELL32::SHGetFolderPath returned: C:\Windows\Fonts
MSI (s) (8C:BC) [11:51:34:634]: Note: 1: 2898 2: MS Sans Serif 3: MS Sans Serif 4: 0 5: 16 
MSI (s) (8C:BC) [11:51:34:634]: MSI_LUA: Setting MsiRunningElevated property to 1 because the install is already running elevated.
MSI (s) (8C:BC) [11:51:34:634]: PROPERTY CHANGE: Adding MsiRunningElevated property. Its value is '1'.
MSI (s) (8C:BC) [11:51:34:634]: PROPERTY CHANGE: Adding Privileged property. Its value is '1'.
MSI (s) (8C:BC) [11:51:34:634]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2 
MSI (s) (8C:BC) [11:51:34:634]: PROPERTY CHANGE: Adding USERNAME property. Its value is 'Windows-Benutzer'.
MSI (s) (8C:BC) [11:51:34:634]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2 
MSI (s) (8C:BC) [11:51:34:634]: PROPERTY CHANGE: Adding Installed property. Its value is '2007/04/11 02:32:52'.
MSI (s) (8C:BC) [11:51:34:634]: PROPERTY CHANGE: Adding DATABASE property. Its value is 'C:\Windows\Installer\3d98c.msi'.
MSI (s) (8C:BC) [11:51:34:634]: PROPERTY CHANGE: Adding OriginalDatabase property. Its value is 'C:\Users\dominik\Desktop\chameleoprosalzgitter.msi'.
MSI (s) (8C:BC) [11:51:34:634]: Machine policy value 'MsiDisableEmbeddedUI' is 0
MSI (s) (8C:BC) [11:51:34:696]: Note: 1: 2205 2:  3: PatchPackage 
MSI (s) (8C:BC) [11:51:34:696]: Machine policy value 'DisableRollback' is 0
MSI (s) (8C:BC) [11:51:34:696]: User policy value 'DisableRollback' is 0
MSI (s) (8C:BC) [11:51:34:696]: PROPERTY CHANGE: Adding UILevel property. Its value is '3'.
MSI (s) (8C:BC) [11:51:34:696]: PROPERTY CHANGE: Adding MsiUIHideCancel property. Its value is '1'.
=== Logging started: 15.11.2013  11:51:34 ===
MSI (s) (8C:BC) [11:51:34:696]: PROPERTY CHANGE: Adding ACTION property. Its value is 'INSTALL'.
MSI (s) (8C:BC) [11:51:34:696]: Doing action: INSTALL
MSI (s) (8C:BC) [11:51:34:696]: Note: 1: 2205 2:  3: ActionText 
Action start 11:51:34: INSTALL.
MSI (s) (8C:BC) [11:51:34:696]: Running ExecuteSequence
MSI (s) (8C:BC) [11:51:34:696]: Doing action: AppSearch
MSI (s) (8C:BC) [11:51:34:696]: Note: 1: 2205 2:  3: ActionText 
MSI (s) (8C:BC) [11:51:34:696]: Note: 1: 2205 2:  3: AppSearch 
MSI (s) (8C:BC) [11:51:34:696]: Note: 1: 2228 2:  3: AppSearch 4: SELECT `Property`, `Signature_` FROM `AppSearch` 
Action start 11:51:34: AppSearch.
MSI (s) (8C:BC) [11:51:34:696]: Doing action: LaunchConditions
MSI (s) (8C:BC) [11:51:34:696]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:51:34: AppSearch. Return value 0.
MSI (s) (8C:BC) [11:51:34:696]: Note: 1: 2262 2: LaunchCondition 3: -2147287038 
Action start 11:51:34: LaunchConditions.
MSI (s) (8C:BC) [11:51:34:696]: Doing action: ValidateProductID
MSI (s) (8C:BC) [11:51:34:696]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:51:34: LaunchConditions. Return value 1.
Action start 11:51:34: ValidateProductID.
MSI (s) (8C:BC) [11:51:34:696]: Doing action: CostInitialize
MSI (s) (8C:BC) [11:51:34:696]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:51:34: ValidateProductID. Return value 1.
MSI (s) (8C:BC) [11:51:34:696]: Machine policy value 'MaxPatchCacheSize' is 10
MSI (s) (8C:BC) [11:51:34:696]: PROPERTY CHANGE: Adding ROOTDRIVE property. Its value is 'C:\'.
MSI (s) (8C:BC) [11:51:34:696]: PROPERTY CHANGE: Adding CostingComplete property. Its value is '0'.
MSI (s) (8C:BC) [11:51:34:696]: Note: 1: 2205 2:  3: Patch 
MSI (s) (8C:BC) [11:51:34:696]: Note: 1: 2205 2:  3: PatchPackage 
MSI (s) (8C:BC) [11:51:34:696]: Note: 1: 2205 2:  3: MsiPatchHeaders 
MSI (s) (8C:BC) [11:51:34:696]: Note: 1: 2205 2:  3: __MsiPatchFileList 
MSI (s) (8C:BC) [11:51:34:696]: Note: 1: 2205 2:  3: PatchPackage 
MSI (s) (8C:BC) [11:51:34:696]: Note: 1: 2228 2:  3: PatchPackage 4: SELECT `DiskId`, `PatchId`, `LastSequence` FROM `Media`, `PatchPackage` WHERE `Media`.`DiskId`=`PatchPackage`.`Media_` ORDER BY `DiskId`  
MSI (s) (8C:BC) [11:51:34:696]: Note: 1: 2205 2:  3: Patch 
Action start 11:51:34: CostInitialize.
MSI (s) (8C:BC) [11:51:34:696]: Doing action: ResolveSource
MSI (s) (8C:BC) [11:51:34:696]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:51:34: CostInitialize. Return value 1.
MSI (s) (8C:BC) [11:51:34:696]: Resolving source.
MSI (s) (8C:BC) [11:51:34:696]: Resolving source to launched-from source.
MSI (s) (8C:BC) [11:51:34:696]: Setting launched-from source as last-used.
MSI (s) (8C:BC) [11:51:34:696]: PROPERTY CHANGE: Adding SourceDir property. Its value is 'C:\Users\dominik\Desktop\'.
MSI (s) (8C:BC) [11:51:34:696]: PROPERTY CHANGE: Adding SOURCEDIR property. Its value is 'C:\Users\dominik\Desktop\'.
MSI (s) (8C:BC) [11:51:34:696]: PROPERTY CHANGE: Adding SourcedirProduct property. Its value is '{88A78260-C44D-46C3-B4E9-CA5CB8B55E9C}'.
MSI (s) (8C:BC) [11:51:34:696]: SOURCEDIR ==> C:\Users\dominik\Desktop\
MSI (s) (8C:BC) [11:51:34:696]: SOURCEDIR product ==> {88A78260-C44D-46C3-B4E9-CA5CB8B55E9C}
MSI (s) (8C:BC) [11:51:34:696]: Determining source type
MSI (s) (8C:BC) [11:51:34:696]: Source type from package 'chameleoprosalzgitter.msi': 0
MSI (s) (8C:BC) [11:51:34:696]: Source path resolution complete. Dumping Directory table...
MSI (s) (8C:BC) [11:51:34:696]: Dir (source): Key: TARGETDIR	, Object: C:\Users\dominik\Desktop\	, LongSubPath: 	, ShortSubPath: 
Action start 11:51:34: ResolveSource.
MSI (s) (8C:BC) [11:51:34:696]: Doing action: FileCost
MSI (s) (8C:BC) [11:51:34:696]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:51:34: ResolveSource. Return value 1.
MSI (s) (8C:BC) [11:51:34:696]: Note: 1: 2205 2:  3: MsiAssembly 
MSI (s) (8C:BC) [11:51:34:696]: Note: 1: 2205 2:  3: Class 
MSI (s) (8C:BC) [11:51:34:696]: Note: 1: 2205 2:  3: Extension 
MSI (s) (8C:BC) [11:51:34:696]: Note: 1: 2205 2:  3: TypeLib 
Action start 11:51:34: FileCost.
MSI (s) (8C:BC) [11:51:34:696]: Doing action: CostFinalize
MSI (s) (8C:BC) [11:51:34:696]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:51:34: FileCost. Return value 1.
MSI (s) (8C:BC) [11:51:34:712]: PROPERTY CHANGE: Adding OutOfDiskSpace property. Its value is '0'.
MSI (s) (8C:BC) [11:51:34:712]: PROPERTY CHANGE: Adding OutOfNoRbDiskSpace property. Its value is '0'.
MSI (s) (8C:BC) [11:51:34:712]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceAvailable property. Its value is '0'.
MSI (s) (8C:BC) [11:51:34:712]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRequired property. Its value is '0'.
MSI (s) (8C:BC) [11:51:34:712]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRemaining property. Its value is '0'.
MSI (s) (8C:BC) [11:51:34:712]: Note: 1: 2205 2:  3: MsiAssembly 
MSI (s) (8C:BC) [11:51:34:712]: Note: 1: 2228 2:  3: MsiAssembly 4:  SELECT `MsiAssembly`.`Attributes`, `MsiAssembly`.`File_Application`, `MsiAssembly`.`File_Manifest`,  `Component`.`KeyPath` FROM `MsiAssembly`, `Component` WHERE  `MsiAssembly`.`Component_` = `Component`.`Component` AND `MsiAssembly`.`Component_` = ? 
MSI (s) (8C:BC) [11:51:34:712]: Note: 1: 2205 2:  3: Patch 
MSI (s) (8C:BC) [11:51:34:712]: Note: 1: 2205 2:  3: Condition 
MSI (s) (8C:BC) [11:51:34:712]: PROPERTY CHANGE: Adding TARGETDIR property. Its value is 'C:\'.
MSI (s) (8C:BC) [11:51:34:712]: Target path resolution complete. Dumping Directory table...
MSI (s) (8C:BC) [11:51:34:712]: Note: target paths subject to change (via custom actions or browsing)
MSI (s) (8C:BC) [11:51:34:712]: Dir (target): Key: TARGETDIR	, Object: C:\
MSI (s) (8C:BC) [11:51:34:712]: Dir (target): Key: WindowsFolder	, Object: C:\Windows\
MSI (s) (8C:BC) [11:51:34:712]: PROPERTY CHANGE: Adding INSTALLLEVEL property. Its value is '1'.
Action start 11:51:34: CostFinalize.
MSI (s) (8C:BC) [11:51:34:712]: Doing action: InstallValidate
MSI (s) (8C:BC) [11:51:34:712]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:51:34: CostFinalize. Return value 1.
MSI (s) (8C:BC) [11:51:34:712]: PROPERTY CHANGE: Deleting MsiRestartManagerSessionKey property. Its current value is '7975f9c104c96441831d0dac2e972083'.
MSI (s) (8C:BC) [11:51:34:712]: Note: 1: 2205 2:  3: Dialog 
MSI (s) (8C:BC) [11:51:34:712]: Feature: MsiGroupPolicy; Installed: Local;   Request: Null;   Action: Null
MSI (s) (8C:BC) [11:51:34:712]: Component: MsiGroupPolicy; Installed: Local;   Request: Null;   Action: Null
MSI (s) (8C:BC) [11:51:34:712]: Component: __MsiGroupPolicy65; Installed: Null;   Request: Null;   Action: Null
MSI (s) (8C:BC) [11:51:34:712]: Note: 1: 2205 2:  3: BindImage 
MSI (s) (8C:BC) [11:51:34:712]: Note: 1: 2205 2:  3: ProgId 
MSI (s) (8C:BC) [11:51:34:712]: Note: 1: 2205 2:  3: PublishComponent 
MSI (s) (8C:BC) [11:51:34:712]: Note: 1: 2205 2:  3: SelfReg 
MSI (s) (8C:BC) [11:51:34:712]: Note: 1: 2205 2:  3: Extension 
MSI (s) (8C:BC) [11:51:34:712]: Note: 1: 2205 2:  3: Font 
MSI (s) (8C:BC) [11:51:34:712]: Note: 1: 2205 2:  3: Shortcut 
MSI (s) (8C:BC) [11:51:34:712]: Note: 1: 2205 2:  3: Class 
MSI (s) (8C:BC) [11:51:34:712]: Note: 1: 2205 2:  3: Icon 
MSI (s) (8C:BC) [11:51:34:712]: Note: 1: 2205 2:  3: TypeLib 
Action start 11:51:34: InstallValidate.
MSI (s) (8C:BC) [11:51:34:712]: PROPERTY CHANGE: Modifying CostingComplete property. Its current value is '0'. Its new value: '1'.
MSI (s) (8C:BC) [11:51:34:712]: Note: 1: 2205 2:  3: BindImage 
MSI (s) (8C:BC) [11:51:34:712]: Note: 1: 2205 2:  3: ProgId 
MSI (s) (8C:BC) [11:51:34:712]: Note: 1: 2205 2:  3: PublishComponent 
MSI (s) (8C:BC) [11:51:34:712]: Note: 1: 2205 2:  3: SelfReg 
MSI (s) (8C:BC) [11:51:34:712]: Note: 1: 2205 2:  3: Extension 
MSI (s) (8C:BC) [11:51:34:712]: Note: 1: 2205 2:  3: Font 
MSI (s) (8C:BC) [11:51:34:712]: Note: 1: 2205 2:  3: Shortcut 
MSI (s) (8C:BC) [11:51:34:712]: Note: 1: 2205 2:  3: Class 
MSI (s) (8C:BC) [11:51:34:712]: Note: 1: 2205 2:  3: Icon 
MSI (s) (8C:BC) [11:51:34:712]: Note: 1: 2205 2:  3: TypeLib 
MSI (s) (8C:BC) [11:51:34:712]: Note: 1: 2727 2:  
MSI (s) (8C:BC) [11:51:34:712]: Note: 1: 2205 2:  3: FilesInUse 
MSI (s) (8C:BC) [11:51:34:712]: Note: 1: 2727 2:  
MSI (s) (8C:BC) [11:51:34:712]: Doing action: InstallInitialize
MSI (s) (8C:BC) [11:51:34:712]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:51:34: InstallValidate. Return value 1.
MSI (s) (8C:BC) [11:51:34:712]: Machine policy value 'AlwaysInstallElevated' is 0
MSI (s) (8C:BC) [11:51:34:712]: User policy value 'AlwaysInstallElevated' is 0
MSI (s) (8C:BC) [11:51:34:712]: BeginTransaction: Locking Server
MSI (s) (8C:BC) [11:51:34:712]: SRSetRestorePoint skipped for this transaction.
MSI (s) (8C:BC) [11:51:34:712]: Server not locked: locking for product {88A78260-C44D-46C3-B4E9-CA5CB8B55E9C}
Action start 11:51:34: InstallInitialize.
MSI (s) (8C:BC) [11:51:34:774]: Doing action: GPDEPLOY
MSI (s) (8C:BC) [11:51:34:774]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:51:34: InstallInitialize. Return value 1.
MSI (s) (8C:BC) [11:51:34:774]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'GPDEPLOY' 
MSI (s) (8C:F4) [11:51:34:837]: Invoking remote custom action. DLL: C:\Windows\Installer\MSI62D.tmp, Entrypoint: GPProc
MSI (s) (8C:58) [11:51:34:837]: Generating random cookie.
MSI (s) (8C:58) [11:51:34:837]: Created Custom Action Server with PID 2928 (0xB70).
MSI (s) (8C:AC) [11:51:34:868]: Running as a service.
MSI (s) (8C:AC) [11:51:34:868]: Hello, I'm your 32bit Impersonated custom action server.
MSI (s) (8C!20) [11:51:36:946]: PROPERTY CHANGE: Adding ARPSYSTEMCOMPONENT property. Its value is '1'.
Action start 11:51:34: GPDEPLOY.
MSI (s) (8C:BC) [11:51:38:665]: Doing action: ProcessComponents
MSI (s) (8C:BC) [11:51:38:665]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:51:38: GPDEPLOY. Return value 1.
Action start 11:51:38: ProcessComponents.
MSI (s) (8C:BC) [11:51:38:665]: Doing action: UnpublishFeatures
MSI (s) (8C:BC) [11:51:38:665]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:51:38: ProcessComponents. Return value 1.
Action start 11:51:38: UnpublishFeatures.
MSI (s) (8C:BC) [11:51:38:665]: Doing action: RemoveRegistryValues
MSI (s) (8C:BC) [11:51:38:665]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:51:38: UnpublishFeatures. Return value 1.
Action start 11:51:38: RemoveRegistryValues.
MSI (s) (8C:BC) [11:51:38:665]: Doing action: RemoveIniValues
MSI (s) (8C:BC) [11:51:38:665]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:51:38: RemoveRegistryValues. Return value 1.
MSI (s) (8C:BC) [11:51:38:665]: Note: 1: 2205 2:  3: IniFile 
MSI (s) (8C:BC) [11:51:38:665]: Note: 1: 2228 2:  3: IniFile 4: SELECT `FileName`,`IniFile`.`DirProperty`,`Section`,`IniFile`.`Key`,`IniFile`.`Value`,`IniFile`.`Action` FROM `IniFile`, `Component` WHERE `Component`=`Component_` AND `Component`.`Action`=0 ORDER BY `FileName`,`Section` 
Action start 11:51:38: RemoveIniValues.
MSI (s) (8C:BC) [11:51:38:665]: Doing action: RemoveFiles
MSI (s) (8C:BC) [11:51:38:665]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:51:38: RemoveIniValues. Return value 1.
MSI (s) (8C:BC) [11:51:38:680]: Note: 1: 2205 2:  3: RemoveFile 
MSI (s) (8C:BC) [11:51:38:680]: Note: 1: 2205 2:  3: RemoveFile 
Action start 11:51:38: RemoveFiles.
MSI (s) (8C:BC) [11:51:38:680]: Doing action: InstallFiles
MSI (s) (8C:BC) [11:51:38:680]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:51:38: RemoveFiles. Return value 0.
MSI (s) (8C:BC) [11:51:38:680]: Note: 1: 2205 2:  3: Patch 
MSI (s) (8C:BC) [11:51:38:680]: Note: 1: 2228 2:  3: Patch 4: SELECT `Patch`.`File_`, `Patch`.`Header`, `Patch`.`Attributes`, `Patch`.`Sequence`, `Patch`.`StreamRef_` FROM `Patch` WHERE `Patch`.`File_` = ? AND `Patch`.`#_MsiActive`=? ORDER BY `Patch`.`Sequence` 
MSI (s) (8C:BC) [11:51:38:680]: Note: 1: 2205 2:  3: Error 
MSI (s) (8C:BC) [11:51:38:680]: Note: 1: 2228 2:  3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1302 
MSI (s) (8C:BC) [11:51:38:680]: Note: 1: 2205 2:  3: MsiSFCBypass 
MSI (s) (8C:BC) [11:51:38:680]: Note: 1: 2228 2:  3: MsiSFCBypass 4: SELECT `File_` FROM `MsiSFCBypass` WHERE `File_` = ? 
MSI (s) (8C:BC) [11:51:38:680]: Note: 1: 2205 2:  3: MsiPatchHeaders 
MSI (s) (8C:BC) [11:51:38:680]: Note: 1: 2228 2:  3: MsiPatchHeaders 4: SELECT `Header` FROM `MsiPatchHeaders` WHERE `StreamRef` = ? 
Action start 11:51:38: InstallFiles.
MSI (s) (8C:BC) [11:51:38:680]: Doing action: WriteRegistryValues
MSI (s) (8C:BC) [11:51:38:680]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:51:38: InstallFiles. Return value 1.
Action start 11:51:38: WriteRegistryValues.
MSI (s) (8C:BC) [11:51:38:680]: Doing action: WriteIniValues
MSI (s) (8C:BC) [11:51:38:680]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:51:38: WriteRegistryValues. Return value 1.
MSI (s) (8C:BC) [11:51:38:680]: Note: 1: 2205 2:  3: IniFile 
MSI (s) (8C:BC) [11:51:38:680]: Note: 1: 2228 2:  3: IniFile 4: SELECT `FileName`,`IniFile`.`DirProperty`,`Section`,`IniFile`.`Key`,`IniFile`.`Value`,`IniFile`.`Action` FROM `IniFile`, `Component` WHERE `Component`=`Component_` AND (`Component`.`Action`=1 OR `Component`.`Action`=2) ORDER BY `FileName`,`Section` 
Action start 11:51:38: WriteIniValues.
MSI (s) (8C:BC) [11:51:38:680]: Doing action: SelfRegModules
MSI (s) (8C:BC) [11:51:38:680]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:51:38: WriteIniValues. Return value 1.
MSI (s) (8C:BC) [11:51:38:680]: Note: 1: 2205 2:  3: SelfReg 
MSI (s) (8C:BC) [11:51:38:680]: Note: 1: 2228 2:  3: SelfReg 4: Select `FileAction`.`FileName`,`FileAction`.`Directory_`,`FileAction`.`Action`, `FileAction`.`Component_`,`SelfReg`.`File_` From `SelfReg`, `FileAction` Where `SelfReg`.`File_` = `FileAction`.`File`  And (`FileAction`.`Action` = 1 OR `FileAction`.`Action` = 2) 
Action start 11:51:38: SelfRegModules.
MSI (s) (8C:BC) [11:51:38:680]: Doing action: RegisterUser
MSI (s) (8C:BC) [11:51:38:680]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:51:38: SelfRegModules. Return value 1.
Action start 11:51:38: RegisterUser.
MSI (s) (8C:BC) [11:51:38:680]: Doing action: RegisterProduct
MSI (s) (8C:BC) [11:51:38:680]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:51:38: RegisterUser. Return value 0.
MSI (s) (8C:BC) [11:51:38:680]: Note: 1: 2205 2:  3: ActionText 
MSI (s) (8C:BC) [11:51:38:680]: Note: 1: 2205 2:  3: ActionText 
MSI (s) (8C:BC) [11:51:38:680]: Note: 1: 2205 2:  3: ActionText 
Action start 11:51:38: RegisterProduct.
MSI (s) (8C:BC) [11:51:38:680]: Doing action: PublishFeatures
MSI (s) (8C:BC) [11:51:38:680]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:51:38: RegisterProduct. Return value 1.
Action start 11:51:38: PublishFeatures.
MSI (s) (8C:BC) [11:51:38:680]: Doing action: PublishProduct
MSI (s) (8C:BC) [11:51:38:680]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:51:38: PublishFeatures. Return value 1.
Action start 11:51:38: PublishProduct.
MSI (s) (8C:BC) [11:51:38:680]: Doing action: InstallFinalize
MSI (s) (8C:BC) [11:51:38:680]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:51:38: PublishProduct. Return value 1.
MSI (s) (8C:BC) [11:51:38:680]: Running Script: C:\Windows\Installer\MSI1570.tmp
MSI (s) (8C:BC) [11:51:38:680]: PROPERTY CHANGE: Adding UpdateStarted property. Its value is '1'.
MSI (s) (8C:BC) [11:51:38:680]: Machine policy value 'DisableRollback' is 0
MSI (s) (8C:BC) [11:51:38:696]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2 
MSI (s) (8C:BC) [11:51:38:696]: Executing op: Header(Signature=1397708873,Version=500,Timestamp=1131372148,LangId=0,Platform=0,ScriptType=1,ScriptMajorVersion=21,ScriptMinorVersion=4,ScriptAttributes=1)
Action start 11:51:38: InstallFinalize.
MSI (s) (8C:BC) [11:51:38:696]: Executing op: ProductInfo(ProductKey={88A78260-C44D-46C3-B4E9-CA5CB8B55E9C},ProductName=chameleoprosalzgitter,PackageName=chameleoprosalzgitter.msi,Language=0,Version=16777216,Assignment=1,ObsoleteArg=0,,,PackageCode={51A3CFDE-7A9C-4EAB-B77C-9979DF68EB9C},,,InstanceType=0,LUASetting=0,RemoteURTInstalls=0,ProductDeploymentFlags=3)
MSI (s) (8C:BC) [11:51:38:696]: Executing op: DialogInfo(Type=0,Argument=0)
MSI (s) (8C:BC) [11:51:38:696]: Executing op: DialogInfo(Type=1,Argument=chameleoprosalzgitter)
MSI (s) (8C:BC) [11:51:38:930]: Executing op: RollbackInfo(,RollbackAction=Rollback,RollbackDescription=Rolling back action:,RollbackTemplate=[1],CleanupAction=RollbackCleanup,CleanupDescription=Removing backup files,CleanupTemplate=File: [1])
MSI (s) (8C:BC) [11:51:38:993]: Executing op: SetBaseline(Baseline=0,)
MSI (s) (8C:BC) [11:51:38:993]: Executing op: SetBaseline(Baseline=1,)
MSI (s) (8C:BC) [11:51:38:993]: Executing op: ActionStart(Name=RegisterProduct,Description=Registering product,Template=[1])
MSI (s) (8C:BC) [11:51:38:993]: Executing op: UpdateEstimatedSize(EstimatedSize=0)
MSI (s) (8C:BC) [11:51:38:993]: Executing op: ProductCPDisplayInfoRegister()
MSI (s) (8C:BC) [11:51:38:993]: Executing op: ActionStart(Name=PublishProduct,Description=Publishing product information,)
MSI (s) (8C:BC) [11:51:38:993]: Executing op: CleanupConfigData()
MSI (s) (8C:BC) [11:51:38:993]: Executing op: RegisterPatchOrder(Continue=0,SequenceType=1,Remove=0)
MSI (s) (8C:BC) [11:51:38:993]: Executing op: SourceListRegisterLastUsed(SourceProduct={88A78260-C44D-46C3-B4E9-CA5CB8B55E9C},LastUsedSource=C:\Users\dominik\Desktop\)
MSI (s) (8C:BC) [11:51:38:993]: Entering CMsiConfigurationManager::SetLastUsedSource.
MSI (s) (8C:BC) [11:51:38:993]: Specifed source is already in a list.
MSI (s) (8C:BC) [11:51:38:993]: User policy value 'SearchOrder' is 'nmu'
MSI (s) (8C:BC) [11:51:38:993]: Adding new sources is allowed.
MSI (s) (8C:BC) [11:51:38:993]: Set LastUsedSource to: C:\Users\dominik\Desktop\.
MSI (s) (8C:BC) [11:51:38:993]: Set LastUsedType to: n.
MSI (s) (8C:BC) [11:51:38:993]: Set LastUsedIndex to: 1.
MSI (s) (8C:BC) [11:51:38:993]: Executing op: End(Checksum=0,ProgressTotalHDWord=0,ProgressTotalLDWord=0)
MSI (s) (8C:BC) [11:51:38:993]: User policy value 'DisableRollback' is 0
MSI (s) (8C:BC) [11:51:38:993]: Machine policy value 'DisableRollback' is 0
MSI (s) (8C:BC) [11:51:38:993]: Note: 1: 2318 2:  
MSI (s) (8C:BC) [11:51:38:993]: No System Restore sequence number for this installation.
MSI (s) (8C:BC) [11:51:38:993]: Unlocking Server
MSI (s) (8C:BC) [11:51:39:040]: PROPERTY CHANGE: Deleting UpdateStarted property. Its current value is '1'.
Action ended 11:51:39: InstallFinalize. Return value 1.
Action ended 11:51:39: INSTALL. Return value 1.
Property(S): ProductCode = {88A78260-C44D-46C3-B4E9-CA5CB8B55E9C}
Property(S): Manufacturer = InstallAware Software Corporation
Property(S): ProductLanguage = 1033
Property(S): TARGETDIR = C:\
Property(S): SourceDir = C:\Users\dominik\Desktop\
Property(S): UpgradeCode = {EE211118-E17E-46C5-A8A4-BB7EAAECA07D}
Property(S): ProductName = chameleoprosalzgitter
Property(S): ProductVersion = 1.0
Property(S): MsiLogFileLocation = C:\temp\FullLog.log
Property(S): PackageCode = {51A3CFDE-7A9C-4EAB-B77C-9979DF68EB9C}
Property(S): ALLUSERS = 1
Property(S): ProductState = 5
Property(S): ProductToBeRegistered = 1
Property(S): CURRENTDIRECTORY = C:\Users\dominik
Property(S): CLIENTUILEVEL = 2
Property(S): CLIENTPROCESSID = 2716
Property(S): PRODUCTLANGUAGE = 0
Property(S): VersionDatabase = 100
Property(S): VersionMsi = 5.00
Property(S): VersionNT = 601
Property(S): WindowsBuild = 7601
Property(S): ServicePackLevel = 1
Property(S): ServicePackLevelMinor = 0
Property(S): MsiNTProductType = 1
Property(S): WindowsFolder = C:\Windows\
Property(S): WindowsVolume = C:\
Property(S): SystemFolder = C:\Windows\system32\
Property(S): System16Folder = C:\Windows\system\
Property(S): RemoteAdminTS = 1
Property(S): TempFolder = C:\temp\
Property(S): ProgramFilesFolder = C:\Program Files\
Property(S): CommonFilesFolder = C:\Program Files\Common Files\
Property(S): AppDataFolder = C:\Users\dominik\AppData\Roaming\
Property(S): FavoritesFolder = C:\Users\dominik\Favorites\
Property(S): NetHoodFolder = C:\Users\dominik\AppData\Roaming\Microsoft\Windows\Network Shortcuts\
Property(S): PersonalFolder = C:\Users\dominik\Documents\
Property(S): PrintHoodFolder = C:\Users\dominik\AppData\Roaming\Microsoft\Windows\Printer Shortcuts\
Property(S): RecentFolder = C:\Users\dominik\AppData\Roaming\Microsoft\Windows\Recent\
Property(S): SendToFolder = C:\Users\dominik\AppData\Roaming\Microsoft\Windows\SendTo\
Property(S): TemplateFolder = C:\ProgramData\Microsoft\Windows\Templates\
Property(S): CommonAppDataFolder = C:\ProgramData\
Property(S): LocalAppDataFolder = C:\Users\dominik\AppData\Local\
Property(S): MyPicturesFolder = C:\Users\dominik\Pictures\
Property(S): AdminToolsFolder = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative Tools\
Property(S): StartupFolder = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\
Property(S): ProgramMenuFolder = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\
Property(S): StartMenuFolder = C:\ProgramData\Microsoft\Windows\Start Menu\
Property(S): DesktopFolder = C:\Users\Public\Desktop\
Property(S): FontsFolder = C:\Windows\Fonts\
Property(S): GPTSupport = 1
Property(S): OLEAdvtSupport = 1
Property(S): ShellAdvtSupport = 1
Property(S): Intel = 6
Property(S): PhysicalMemory = 2048
Property(S): VirtualMemory = 3267
Property(S): AdminUser = 1
Property(S): MsiTrueAdminUser = 1
Property(S): LogonUser = domi
Property(S): UserSID = S-1-5-21-2095674808-198987235-1403064888-9937
Property(S): UserLanguageID = 1031
Property(S): ComputerName = PACKPC05
Property(S): SystemLanguageID = 1031
Property(S): ScreenX = 1024
Property(S): ScreenY = 768
Property(S): CaptionHeight = 22
Property(S): BorderTop = 1
Property(S): BorderSide = 1
Property(S): TextHeight = 16
Property(S): TextInternalLeading = 3
Property(S): ColorBits = 32
Property(S): TTCSupport = 1
Property(S): Time = 11:51:39
Property(S): Date = 15.11.2013
Property(S): MsiNetAssemblySupport = 4.0.30319.1
Property(S): MsiWin32AssemblySupport = 6.1.7601.17514
Property(S): RedirectedDllSupport = 2
Property(S): MsiRunningElevated = 1
Property(S): Privileged = 1
Property(S): USERNAME = Windows-Benutzer
Property(S): Installed = 2007/04/11 02:32:52
Property(S): DATABASE = C:\Windows\Installer\3d98c.msi
Property(S): OriginalDatabase = C:\Users\dominik\Desktop\chameleoprosalzgitter.msi
Property(S): UILevel = 3
Property(S): MsiUIHideCancel = 1
Property(S): ACTION = INSTALL
Property(S): ROOTDRIVE = C:\
Property(S): CostingComplete = 1
Property(S): SOURCEDIR = C:\Users\dominik\Desktop\
Property(S): SourcedirProduct = {88A78260-C44D-46C3-B4E9-CA5CB8B55E9C}
Property(S): OutOfDiskSpace = 0
Property(S): OutOfNoRbDiskSpace = 0
Property(S): PrimaryVolumeSpaceAvailable = 0
Property(S): PrimaryVolumeSpaceRequired = 0
Property(S): PrimaryVolumeSpaceRemaining = 0
Property(S): INSTALLLEVEL = 1
Property(S): ARPSYSTEMCOMPONENT = 1
MSI (s) (8C:BC) [11:51:39:040]: Note: 1: 1728 
MSI (s) (8C:BC) [11:51:39:040]: Note: 1: 2205 2:  3: Error 
MSI (s) (8C:BC) [11:51:39:040]: Note: 1: 2228 2:  3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1728 
MSI (s) (8C:BC) [11:51:39:040]: Note: 1: 2205 2:  3: Error 
MSI (s) (8C:BC) [11:51:39:040]: Note: 1: 2228 2:  3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1709 
MSI (s) (8C:BC) [11:51:39:040]: Product: chameleoprosalzgitter -- Configuration completed successfully.

MSI (s) (8C:BC) [11:51:39:040]: Das Produkt wurde durch Windows Installer neu konfiguriert. Produktname: chameleoprosalzgitter. Produktversion: 1.0. Produktsprache: 1033. Hersteller: InstallAware Software Corporation. Erfolg- bzw. Fehlerstatus der neuen Konfiguration: 0.

MSI (s) (8C:BC) [11:51:39:040]: Deferring clean up of packages/files, if any exist
MSI (s) (8C:BC) [11:51:39:040]: MainEngineThread is returning 0
MSI (s) (8C:78) [11:51:39:055]: RESTART MANAGER: Session closed.
MSI (s) (8C:78) [11:51:39:055]: No System Restore sequence number for this installation.
=== Logging stopped: 15.11.2013  11:51:39 ===
MSI (s) (8C:78) [11:51:39:055]: User policy value 'DisableRollback' is 0
MSI (s) (8C:78) [11:51:39:055]: Machine policy value 'DisableRollback' is 0
MSI (s) (8C:78) [11:51:39:055]: Incrementing counter to disable shutdown. Counter after increment: 0
MSI (s) (8C:78) [11:51:39:055]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2 
MSI (s) (8C:78) [11:51:39:055]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2 
MSI (s) (8C:78) [11:51:39:055]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied.  Counter after decrement: -1
MSI (s) (8C:78) [11:51:39:055]: Restoring environment variables
MSI (s) (8C:78) [11:51:39:055]: Destroying RemoteAPI object.
MSI (s) (8C:58) [11:51:39:055]: Custom Action Manager thread ending.
MSI (c) (9C:9C) [11:51:39:055]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied.  Counter after decrement: -1
MSI (c) (9C:9C) [11:51:39:055]: MainEngineThread is returning 0
=== Verbose logging stopped: 15.11.2013  11:51:39 ===


dodic
Posts: 506
Joined: 03. Feb 2012, 10:51
Location: Salzgitter
Contact:

Re: Paket wird über Depot nicht installiert

Post by dodic » 15. Nov 2013, 12:00

Code: Select all

msiexec /i setup.msi /qn /l*v "%Temp%\FullLog.log"

Code: Select all

=== Verbose logging started: 15.11.2013  11:53:07  Build type: SHIP UNICODE 5.00.7601.00  Calling process: C:\Windows\system32\msiexec.exe ===
MSI (c) (A0:64) [11:53:07:305]: Resetting cached policy values
MSI (c) (A0:64) [11:53:07:305]: Machine policy value 'Debug' is 0
MSI (c) (A0:64) [11:53:07:305]: ******* RunEngine:
           ******* Product: C:\Users\dominik\Desktop\chameleoprosalzgitter.msi
           ******* Action: 
           ******* CommandLine: **********
MSI (c) (A0:64) [11:53:07:305]: Client-side and UI is none or basic: Running entire install on the server.
MSI (c) (A0:64) [11:53:07:305]: Grabbed execution mutex.
MSI (c) (A0:64) [11:53:07:337]: Cloaking enabled.
MSI (c) (A0:64) [11:53:07:337]: Attempting to enable all disabled privileges before calling Install on Server
MSI (c) (A0:64) [11:53:07:337]: Incrementing counter to disable shutdown. Counter after increment: 0
MSI (s) (8C:78) [11:53:07:337]: Running installation inside multi-package transaction C:\Users\dominik\Desktop\chameleoprosalzgitter.msi
MSI (s) (8C:78) [11:53:07:337]: Grabbed execution mutex.
MSI (s) (8C:C0) [11:53:07:337]: Resetting cached policy values
MSI (s) (8C:C0) [11:53:07:337]: Machine policy value 'Debug' is 0
MSI (s) (8C:C0) [11:53:07:337]: ******* RunEngine:
           ******* Product: C:\Users\dominik\Desktop\chameleoprosalzgitter.msi
           ******* Action: 
           ******* CommandLine: **********
MSI (s) (8C:C0) [11:53:07:337]: Machine policy value 'DisableUserInstalls' is 0
MSI (s) (8C:C0) [11:53:07:352]: SRSetRestorePoint skipped for this transaction.
MSI (s) (8C:C0) [11:53:07:352]: End dialog not enabled
MSI (s) (8C:C0) [11:53:07:352]: Original package ==> C:\Users\dominik\Desktop\chameleoprosalzgitter.msi
MSI (s) (8C:C0) [11:53:07:352]: Package we're running from ==> C:\Windows\Installer\3d98c.msi
MSI (s) (8C:C0) [11:53:07:352]: APPCOMPAT: Uninstall Flags override found.
MSI (s) (8C:C0) [11:53:07:352]: APPCOMPAT: Uninstall VersionNT override found.
MSI (s) (8C:C0) [11:53:07:352]: APPCOMPAT: Uninstall ServicePackLevel override found.
MSI (s) (8C:C0) [11:53:07:352]: APPCOMPAT: looking for appcompat database entry with ProductCode '{88A78260-C44D-46C3-B4E9-CA5CB8B55E9C}'.
MSI (s) (8C:C0) [11:53:07:352]: APPCOMPAT: no matching ProductCode found in database.
MSI (s) (8C:C0) [11:53:07:352]: MSCOREE not loaded loading copy from system32
MSI (s) (8C:C0) [11:53:07:352]: Note: 1: 2262 2: File 3: -2147287038 
MSI (s) (8C:C0) [11:53:07:352]: Note: 1: 2205 2:  3: MsiFileHash 
MSI (s) (8C:C0) [11:53:07:352]: Machine policy value 'DisablePatch' is 0
MSI (s) (8C:C0) [11:53:07:352]: Machine policy value 'AllowLockdownPatch' is 0
MSI (s) (8C:C0) [11:53:07:352]: Machine policy value 'DisableLUAPatching' is 0
MSI (s) (8C:C0) [11:53:07:352]: Machine policy value 'DisableFlyWeightPatching' is 0
MSI (s) (8C:C0) [11:53:07:352]: APPCOMPAT: looking for appcompat database entry with ProductCode '{88A78260-C44D-46C3-B4E9-CA5CB8B55E9C}'.
MSI (s) (8C:C0) [11:53:07:352]: APPCOMPAT: no matching ProductCode found in database.
MSI (s) (8C:C0) [11:53:07:352]: Transforms are not secure.
MSI (s) (8C:C0) [11:53:07:352]: Note: 1: 2205 2:  3: Control 
MSI (s) (8C:C0) [11:53:07:352]: PROPERTY CHANGE: Adding MsiLogFileLocation property. Its value is 'C:\temp\FullLog.log'.
MSI (s) (8C:C0) [11:53:07:352]: Command Line: CURRENTDIRECTORY=C:\Users\dominik CLIENTUILEVEL=3 CLIENTPROCESSID=2720 
MSI (s) (8C:C0) [11:53:07:352]: PROPERTY CHANGE: Adding PackageCode property. Its value is '{51A3CFDE-7A9C-4EAB-B77C-9979DF68EB9C}'.
MSI (s) (8C:C0) [11:53:07:352]: Product Code passed to Engine.Initialize:           '{88A78260-C44D-46C3-B4E9-CA5CB8B55E9C}'
MSI (s) (8C:C0) [11:53:07:352]: Product Code from property table before transforms: '{88A78260-C44D-46C3-B4E9-CA5CB8B55E9C}'
MSI (s) (8C:C0) [11:53:07:352]: Product Code from property table after transforms:  '{88A78260-C44D-46C3-B4E9-CA5CB8B55E9C}'
MSI (s) (8C:C0) [11:53:07:352]: Product registered: entering maintenance mode
MSI (s) (8C:C0) [11:53:07:352]: Determined that existing product (either this product or the product being upgraded with a patch) is installed per-machine.
MSI (s) (8C:C0) [11:53:07:352]: PROPERTY CHANGE: Adding ALLUSERS property. Its value is '1'.
MSI (s) (8C:C0) [11:53:07:352]: Product {88A78260-C44D-46C3-B4E9-CA5CB8B55E9C} is admin assigned: LocalSystem owns the publish key.
MSI (s) (8C:C0) [11:53:07:352]: Product {88A78260-C44D-46C3-B4E9-CA5CB8B55E9C} is managed.
MSI (s) (8C:C0) [11:53:07:352]: MSI_LUA: Credential prompt not required, user is an admin
MSI (s) (8C:C0) [11:53:07:352]: PROPERTY CHANGE: Adding ProductState property. Its value is '5'.
MSI (s) (8C:C0) [11:53:07:352]: PROPERTY CHANGE: Adding ProductToBeRegistered property. Its value is '1'.
MSI (s) (8C:C0) [11:53:07:352]: Entering CMsiConfigurationManager::SetLastUsedSource.
MSI (s) (8C:C0) [11:53:07:352]: Specifed source is already in a list.
MSI (s) (8C:C0) [11:53:07:352]: User policy value 'SearchOrder' is 'nmu'
MSI (s) (8C:C0) [11:53:07:352]: Machine policy value 'DisableBrowse' is 0
MSI (s) (8C:C0) [11:53:07:352]: Machine policy value 'AllowLockdownBrowse' is 0
MSI (s) (8C:C0) [11:53:07:352]: Adding new sources is allowed.
MSI (s) (8C:C0) [11:53:07:352]: Package name retrieved from configuration data: 'chameleoprosalzgitter.msi'
MSI (s) (8C:C0) [11:53:07:352]: Note: 1: 2205 2:  3: Error 
MSI (s) (8C:C0) [11:53:07:352]: Note: 1: 2262 2: AdminProperties 3: -2147287038 
MSI (s) (8C:C0) [11:53:07:352]: Machine policy value 'DisableMsi' is 0
MSI (s) (8C:C0) [11:53:07:352]: Machine policy value 'AlwaysInstallElevated' is 0
MSI (s) (8C:C0) [11:53:07:352]: User policy value 'AlwaysInstallElevated' is 0
MSI (s) (8C:C0) [11:53:07:352]: Product {88A78260-C44D-46C3-B4E9-CA5CB8B55E9C} is admin assigned: LocalSystem owns the publish key.
MSI (s) (8C:C0) [11:53:07:352]: Product {88A78260-C44D-46C3-B4E9-CA5CB8B55E9C} is managed.
MSI (s) (8C:C0) [11:53:07:352]: Running product '{88A78260-C44D-46C3-B4E9-CA5CB8B55E9C}' with elevated privileges: Product is assigned.
MSI (s) (8C:C0) [11:53:07:352]: PROPERTY CHANGE: Adding CURRENTDIRECTORY property. Its value is 'C:\Users\dominik'.
MSI (s) (8C:C0) [11:53:07:352]: PROPERTY CHANGE: Adding CLIENTUILEVEL property. Its value is '3'.
MSI (s) (8C:C0) [11:53:07:352]: PROPERTY CHANGE: Adding CLIENTPROCESSID property. Its value is '2720'.
MSI (s) (8C:C0) [11:53:07:352]: Machine policy value 'DisableAutomaticApplicationShutdown' is 0
MSI (s) (8C:C0) [11:53:07:352]: PROPERTY CHANGE: Adding MsiRestartManagerSessionKey property. Its value is '6baf24d838ca8049bf80f0e5423149ff'.
MSI (s) (8C:C0) [11:53:07:352]: RESTART MANAGER: Session opened.
MSI (s) (8C:C0) [11:53:07:352]: TRANSFORMS property is now: 
MSI (s) (8C:C0) [11:53:07:352]: PROPERTY CHANGE: Adding PRODUCTLANGUAGE property. Its value is '0'.
MSI (s) (8C:C0) [11:53:07:352]: PROPERTY CHANGE: Adding VersionDatabase property. Its value is '100'.
MSI (s) (8C:C0) [11:53:07:352]: SHELL32::SHGetFolderPath returned: C:\Users\dominik\AppData\Roaming
MSI (s) (8C:C0) [11:53:07:352]: SHELL32::SHGetFolderPath returned: C:\Users\dominik\Favorites
MSI (s) (8C:C0) [11:53:07:352]: SHELL32::SHGetFolderPath returned: C:\Users\dominik\AppData\Roaming\Microsoft\Windows\Network Shortcuts
MSI (s) (8C:C0) [11:53:07:352]: SHELL32::SHGetFolderPath returned: C:\Users\dominik\Documents
MSI (s) (8C:C0) [11:53:07:352]: SHELL32::SHGetFolderPath returned: C:\Users\dominik\AppData\Roaming\Microsoft\Windows\Printer Shortcuts
MSI (s) (8C:C0) [11:53:07:352]: SHELL32::SHGetFolderPath returned: C:\Users\dominik\AppData\Roaming\Microsoft\Windows\Recent
MSI (s) (8C:C0) [11:53:07:352]: SHELL32::SHGetFolderPath returned: C:\Users\dominik\AppData\Roaming\Microsoft\Windows\SendTo
MSI (s) (8C:C0) [11:53:07:352]: SHELL32::SHGetFolderPath returned: C:\Users\dominik\AppData\Roaming\Microsoft\Windows\Templates
MSI (s) (8C:C0) [11:53:07:352]: SHELL32::SHGetFolderPath returned: C:\ProgramData
MSI (s) (8C:C0) [11:53:07:352]: SHELL32::SHGetFolderPath returned: C:\Users\dominik\AppData\Local
MSI (s) (8C:C0) [11:53:07:368]: SHELL32::SHGetFolderPath returned: C:\Users\dominik\Pictures
MSI (s) (8C:C0) [11:53:07:368]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative Tools
MSI (s) (8C:C0) [11:53:07:368]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
MSI (s) (8C:C0) [11:53:07:368]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs
MSI (s) (8C:C0) [11:53:07:368]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu
MSI (s) (8C:C0) [11:53:07:368]: SHELL32::SHGetFolderPath returned: C:\Users\Public\Desktop
MSI (s) (8C:C0) [11:53:07:368]: SHELL32::SHGetFolderPath returned: C:\Users\dominik\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Administrative Tools
MSI (s) (8C:C0) [11:53:07:368]: SHELL32::SHGetFolderPath returned: C:\Users\dominik\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
MSI (s) (8C:C0) [11:53:07:368]: SHELL32::SHGetFolderPath returned: C:\Users\dominik\AppData\Roaming\Microsoft\Windows\Start Menu\Programs
MSI (s) (8C:C0) [11:53:07:368]: SHELL32::SHGetFolderPath returned: C:\Users\dominik\AppData\Roaming\Microsoft\Windows\Start Menu
MSI (s) (8C:C0) [11:53:07:368]: SHELL32::SHGetFolderPath returned: C:\Users\dominik\Desktop
MSI (s) (8C:C0) [11:53:07:368]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Templates
MSI (s) (8C:C0) [11:53:07:368]: SHELL32::SHGetFolderPath returned: C:\Windows\Fonts
MSI (s) (8C:C0) [11:53:07:368]: Note: 1: 2898 2: MS Sans Serif 3: MS Sans Serif 4: 0 5: 16 
MSI (s) (8C:C0) [11:53:07:368]: MSI_LUA: Setting MsiRunningElevated property to 1 because the install is already running elevated.
MSI (s) (8C:C0) [11:53:07:368]: PROPERTY CHANGE: Adding MsiRunningElevated property. Its value is '1'.
MSI (s) (8C:C0) [11:53:07:368]: PROPERTY CHANGE: Adding Privileged property. Its value is '1'.
MSI (s) (8C:C0) [11:53:07:368]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2 
MSI (s) (8C:C0) [11:53:07:368]: PROPERTY CHANGE: Adding USERNAME property. Its value is 'Windows-Benutzer'.
MSI (s) (8C:C0) [11:53:07:368]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2 
MSI (s) (8C:C0) [11:53:07:368]: PROPERTY CHANGE: Adding Installed property. Its value is '2007/04/11 02:32:52'.
MSI (s) (8C:C0) [11:53:07:368]: PROPERTY CHANGE: Adding DATABASE property. Its value is 'C:\Windows\Installer\3d98c.msi'.
MSI (s) (8C:C0) [11:53:07:368]: PROPERTY CHANGE: Adding OriginalDatabase property. Its value is 'C:\Users\dominik\Desktop\chameleoprosalzgitter.msi'.
MSI (s) (8C:C0) [11:53:07:368]: Machine policy value 'MsiDisableEmbeddedUI' is 0
MSI (s) (8C:C0) [11:53:07:368]: EEUI - Disabling MsiEmbeddedUI for service because it's not a quiet/basic install
MSI (s) (8C:C0) [11:53:07:368]: Note: 1: 2205 2:  3: PatchPackage 
MSI (s) (8C:C0) [11:53:07:368]: Machine policy value 'DisableRollback' is 0
MSI (s) (8C:C0) [11:53:07:368]: User policy value 'DisableRollback' is 0
MSI (s) (8C:C0) [11:53:07:368]: PROPERTY CHANGE: Adding UILevel property. Its value is '2'.
=== Logging started: 15.11.2013  11:53:07 ===
MSI (s) (8C:C0) [11:53:07:368]: PROPERTY CHANGE: Adding ACTION property. Its value is 'INSTALL'.
MSI (s) (8C:C0) [11:53:07:368]: Doing action: INSTALL
MSI (s) (8C:C0) [11:53:07:368]: Note: 1: 2205 2:  3: ActionText 
Action start 11:53:07: INSTALL.
MSI (s) (8C:C0) [11:53:07:368]: Running ExecuteSequence
MSI (s) (8C:C0) [11:53:07:368]: Doing action: AppSearch
MSI (s) (8C:C0) [11:53:07:368]: Note: 1: 2205 2:  3: ActionText 
MSI (s) (8C:C0) [11:53:07:368]: Note: 1: 2205 2:  3: AppSearch 
MSI (s) (8C:C0) [11:53:07:368]: Note: 1: 2228 2:  3: AppSearch 4: SELECT `Property`, `Signature_` FROM `AppSearch` 
Action start 11:53:07: AppSearch.
MSI (s) (8C:C0) [11:53:07:368]: Doing action: LaunchConditions
MSI (s) (8C:C0) [11:53:07:368]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:53:07: AppSearch. Return value 0.
MSI (s) (8C:C0) [11:53:07:368]: Note: 1: 2262 2: LaunchCondition 3: -2147287038 
Action start 11:53:07: LaunchConditions.
MSI (s) (8C:C0) [11:53:07:384]: Doing action: ValidateProductID
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:53:07: LaunchConditions. Return value 1.
Action start 11:53:07: ValidateProductID.
MSI (s) (8C:C0) [11:53:07:384]: Doing action: CostInitialize
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:53:07: ValidateProductID. Return value 1.
MSI (s) (8C:C0) [11:53:07:384]: Machine policy value 'MaxPatchCacheSize' is 10
MSI (s) (8C:C0) [11:53:07:384]: PROPERTY CHANGE: Adding ROOTDRIVE property. Its value is 'C:\'.
MSI (s) (8C:C0) [11:53:07:384]: PROPERTY CHANGE: Adding CostingComplete property. Its value is '0'.
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: Patch 
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: PatchPackage 
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: MsiPatchHeaders 
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: __MsiPatchFileList 
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: PatchPackage 
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2228 2:  3: PatchPackage 4: SELECT `DiskId`, `PatchId`, `LastSequence` FROM `Media`, `PatchPackage` WHERE `Media`.`DiskId`=`PatchPackage`.`Media_` ORDER BY `DiskId`  
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: Patch 
Action start 11:53:07: CostInitialize.
MSI (s) (8C:C0) [11:53:07:384]: Doing action: ResolveSource
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:53:07: CostInitialize. Return value 1.
MSI (s) (8C:C0) [11:53:07:384]: Resolving source.
MSI (s) (8C:C0) [11:53:07:384]: Resolving source to launched-from source.
MSI (s) (8C:C0) [11:53:07:384]: Setting launched-from source as last-used.
MSI (s) (8C:C0) [11:53:07:384]: PROPERTY CHANGE: Adding SourceDir property. Its value is 'C:\Users\dominik\Desktop\'.
MSI (s) (8C:C0) [11:53:07:384]: PROPERTY CHANGE: Adding SOURCEDIR property. Its value is 'C:\Users\dominik\Desktop\'.
MSI (s) (8C:C0) [11:53:07:384]: PROPERTY CHANGE: Adding SourcedirProduct property. Its value is '{88A78260-C44D-46C3-B4E9-CA5CB8B55E9C}'.
MSI (s) (8C:C0) [11:53:07:384]: SOURCEDIR ==> C:\Users\dominik\Desktop\
MSI (s) (8C:C0) [11:53:07:384]: SOURCEDIR product ==> {88A78260-C44D-46C3-B4E9-CA5CB8B55E9C}
MSI (s) (8C:C0) [11:53:07:384]: Determining source type
MSI (s) (8C:C0) [11:53:07:384]: Source type from package 'chameleoprosalzgitter.msi': 0
MSI (s) (8C:C0) [11:53:07:384]: Source path resolution complete. Dumping Directory table...
MSI (s) (8C:C0) [11:53:07:384]: Dir (source): Key: TARGETDIR	, Object: C:\Users\dominik\Desktop\	, LongSubPath: 	, ShortSubPath: 
Action start 11:53:07: ResolveSource.
MSI (s) (8C:C0) [11:53:07:384]: Doing action: FileCost
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:53:07: ResolveSource. Return value 1.
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: MsiAssembly 
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: Class 
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: Extension 
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: TypeLib 
Action start 11:53:07: FileCost.
MSI (s) (8C:C0) [11:53:07:384]: Doing action: CostFinalize
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:53:07: FileCost. Return value 1.
MSI (s) (8C:C0) [11:53:07:384]: PROPERTY CHANGE: Adding OutOfDiskSpace property. Its value is '0'.
MSI (s) (8C:C0) [11:53:07:384]: PROPERTY CHANGE: Adding OutOfNoRbDiskSpace property. Its value is '0'.
MSI (s) (8C:C0) [11:53:07:384]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceAvailable property. Its value is '0'.
MSI (s) (8C:C0) [11:53:07:384]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRequired property. Its value is '0'.
MSI (s) (8C:C0) [11:53:07:384]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRemaining property. Its value is '0'.
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: MsiAssembly 
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2228 2:  3: MsiAssembly 4:  SELECT `MsiAssembly`.`Attributes`, `MsiAssembly`.`File_Application`, `MsiAssembly`.`File_Manifest`,  `Component`.`KeyPath` FROM `MsiAssembly`, `Component` WHERE  `MsiAssembly`.`Component_` = `Component`.`Component` AND `MsiAssembly`.`Component_` = ? 
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: Patch 
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: Condition 
MSI (s) (8C:C0) [11:53:07:384]: PROPERTY CHANGE: Adding TARGETDIR property. Its value is 'C:\'.
MSI (s) (8C:C0) [11:53:07:384]: Target path resolution complete. Dumping Directory table...
MSI (s) (8C:C0) [11:53:07:384]: Note: target paths subject to change (via custom actions or browsing)
MSI (s) (8C:C0) [11:53:07:384]: Dir (target): Key: TARGETDIR	, Object: C:\
MSI (s) (8C:C0) [11:53:07:384]: Dir (target): Key: WindowsFolder	, Object: C:\Windows\
MSI (s) (8C:C0) [11:53:07:384]: PROPERTY CHANGE: Adding INSTALLLEVEL property. Its value is '1'.
Action start 11:53:07: CostFinalize.
MSI (s) (8C:C0) [11:53:07:384]: Doing action: InstallValidate
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:53:07: CostFinalize. Return value 1.
MSI (s) (8C:C0) [11:53:07:384]: PROPERTY CHANGE: Deleting MsiRestartManagerSessionKey property. Its current value is '6baf24d838ca8049bf80f0e5423149ff'.
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: Dialog 
MSI (s) (8C:C0) [11:53:07:384]: Feature: MsiGroupPolicy; Installed: Local;   Request: Null;   Action: Null
MSI (s) (8C:C0) [11:53:07:384]: Component: MsiGroupPolicy; Installed: Local;   Request: Null;   Action: Null
MSI (s) (8C:C0) [11:53:07:384]: Component: __MsiGroupPolicy65; Installed: Null;   Request: Null;   Action: Null
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: BindImage 
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: ProgId 
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: PublishComponent 
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: SelfReg 
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: Extension 
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: Font 
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: Shortcut 
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: Class 
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: Icon 
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: TypeLib 
Action start 11:53:07: InstallValidate.
MSI (s) (8C:C0) [11:53:07:384]: PROPERTY CHANGE: Modifying CostingComplete property. Its current value is '0'. Its new value: '1'.
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: BindImage 
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: ProgId 
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: PublishComponent 
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: SelfReg 
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: Extension 
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: Font 
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: Shortcut 
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: Class 
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: Icon 
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: TypeLib 
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2727 2:  
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: FilesInUse 
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2727 2:  
MSI (s) (8C:C0) [11:53:07:384]: Doing action: InstallInitialize
MSI (s) (8C:C0) [11:53:07:384]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:53:07: InstallValidate. Return value 1.
MSI (s) (8C:C0) [11:53:07:384]: Machine policy value 'AlwaysInstallElevated' is 0
MSI (s) (8C:C0) [11:53:07:384]: User policy value 'AlwaysInstallElevated' is 0
MSI (s) (8C:C0) [11:53:07:384]: BeginTransaction: Locking Server
MSI (s) (8C:C0) [11:53:07:384]: SRSetRestorePoint skipped for this transaction.
MSI (s) (8C:C0) [11:53:07:384]: Server not locked: locking for product {88A78260-C44D-46C3-B4E9-CA5CB8B55E9C}
Action start 11:53:07: InstallInitialize.
MSI (s) (8C:C0) [11:53:07:399]: Doing action: GPDEPLOY
MSI (s) (8C:C0) [11:53:07:399]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:53:07: InstallInitialize. Return value 1.
MSI (s) (8C:C0) [11:53:07:399]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'GPDEPLOY' 
MSI (s) (8C:B4) [11:53:07:415]: Invoking remote custom action. DLL: C:\Windows\Installer\MSI7002.tmp, Entrypoint: GPProc
MSI (s) (8C:6C) [11:53:07:415]: Generating random cookie.
MSI (s) (8C:6C) [11:53:07:415]: Created Custom Action Server with PID 1212 (0x4BC).
MSI (s) (8C:84) [11:53:07:430]: Running as a service.
MSI (s) (8C:84) [11:53:07:430]: Hello, I'm your 32bit Impersonated custom action server.
MSI (s) (8C!3C) [11:53:07:649]: PROPERTY CHANGE: Adding ARPSYSTEMCOMPONENT property. Its value is '1'.
Action start 11:53:07: GPDEPLOY.
MSI (s) (8C:C0) [11:53:09:118]: Doing action: ProcessComponents
MSI (s) (8C:C0) [11:53:09:118]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:53:09: GPDEPLOY. Return value 1.
Action start 11:53:09: ProcessComponents.
MSI (s) (8C:C0) [11:53:09:118]: Doing action: UnpublishFeatures
MSI (s) (8C:C0) [11:53:09:118]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:53:09: ProcessComponents. Return value 1.
Action start 11:53:09: UnpublishFeatures.
MSI (s) (8C:C0) [11:53:09:118]: Doing action: RemoveRegistryValues
MSI (s) (8C:C0) [11:53:09:118]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:53:09: UnpublishFeatures. Return value 1.
Action start 11:53:09: RemoveRegistryValues.
MSI (s) (8C:C0) [11:53:09:118]: Doing action: RemoveIniValues
MSI (s) (8C:C0) [11:53:09:118]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:53:09: RemoveRegistryValues. Return value 1.
MSI (s) (8C:C0) [11:53:09:118]: Note: 1: 2205 2:  3: IniFile 
MSI (s) (8C:C0) [11:53:09:118]: Note: 1: 2228 2:  3: IniFile 4: SELECT `FileName`,`IniFile`.`DirProperty`,`Section`,`IniFile`.`Key`,`IniFile`.`Value`,`IniFile`.`Action` FROM `IniFile`, `Component` WHERE `Component`=`Component_` AND `Component`.`Action`=0 ORDER BY `FileName`,`Section` 
Action start 11:53:09: RemoveIniValues.
MSI (s) (8C:C0) [11:53:09:118]: Doing action: RemoveFiles
MSI (s) (8C:C0) [11:53:09:118]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:53:09: RemoveIniValues. Return value 1.
MSI (s) (8C:C0) [11:53:09:118]: Note: 1: 2205 2:  3: RemoveFile 
MSI (s) (8C:C0) [11:53:09:118]: Note: 1: 2205 2:  3: RemoveFile 
Action start 11:53:09: RemoveFiles.
MSI (s) (8C:C0) [11:53:09:118]: Doing action: InstallFiles
MSI (s) (8C:C0) [11:53:09:118]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:53:09: RemoveFiles. Return value 0.
MSI (s) (8C:C0) [11:53:09:118]: Note: 1: 2205 2:  3: Patch 
MSI (s) (8C:C0) [11:53:09:118]: Note: 1: 2228 2:  3: Patch 4: SELECT `Patch`.`File_`, `Patch`.`Header`, `Patch`.`Attributes`, `Patch`.`Sequence`, `Patch`.`StreamRef_` FROM `Patch` WHERE `Patch`.`File_` = ? AND `Patch`.`#_MsiActive`=? ORDER BY `Patch`.`Sequence` 
MSI (s) (8C:C0) [11:53:09:118]: Note: 1: 2205 2:  3: Error 
MSI (s) (8C:C0) [11:53:09:118]: Note: 1: 2228 2:  3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1302 
MSI (s) (8C:C0) [11:53:09:118]: Note: 1: 2205 2:  3: MsiSFCBypass 
MSI (s) (8C:C0) [11:53:09:118]: Note: 1: 2228 2:  3: MsiSFCBypass 4: SELECT `File_` FROM `MsiSFCBypass` WHERE `File_` = ? 
MSI (s) (8C:C0) [11:53:09:118]: Note: 1: 2205 2:  3: MsiPatchHeaders 
MSI (s) (8C:C0) [11:53:09:118]: Note: 1: 2228 2:  3: MsiPatchHeaders 4: SELECT `Header` FROM `MsiPatchHeaders` WHERE `StreamRef` = ? 
Action start 11:53:09: InstallFiles.
MSI (s) (8C:C0) [11:53:09:118]: Doing action: WriteRegistryValues
MSI (s) (8C:C0) [11:53:09:118]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:53:09: InstallFiles. Return value 1.
Action start 11:53:09: WriteRegistryValues.
MSI (s) (8C:C0) [11:53:09:118]: Doing action: WriteIniValues
MSI (s) (8C:C0) [11:53:09:118]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:53:09: WriteRegistryValues. Return value 1.
MSI (s) (8C:C0) [11:53:09:118]: Note: 1: 2205 2:  3: IniFile 
MSI (s) (8C:C0) [11:53:09:118]: Note: 1: 2228 2:  3: IniFile 4: SELECT `FileName`,`IniFile`.`DirProperty`,`Section`,`IniFile`.`Key`,`IniFile`.`Value`,`IniFile`.`Action` FROM `IniFile`, `Component` WHERE `Component`=`Component_` AND (`Component`.`Action`=1 OR `Component`.`Action`=2) ORDER BY `FileName`,`Section` 
Action start 11:53:09: WriteIniValues.
MSI (s) (8C:C0) [11:53:09:118]: Doing action: SelfRegModules
MSI (s) (8C:C0) [11:53:09:118]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:53:09: WriteIniValues. Return value 1.
MSI (s) (8C:C0) [11:53:09:118]: Note: 1: 2205 2:  3: SelfReg 
MSI (s) (8C:C0) [11:53:09:118]: Note: 1: 2228 2:  3: SelfReg 4: Select `FileAction`.`FileName`,`FileAction`.`Directory_`,`FileAction`.`Action`, `FileAction`.`Component_`,`SelfReg`.`File_` From `SelfReg`, `FileAction` Where `SelfReg`.`File_` = `FileAction`.`File`  And (`FileAction`.`Action` = 1 OR `FileAction`.`Action` = 2) 
Action start 11:53:09: SelfRegModules.
MSI (s) (8C:C0) [11:53:09:134]: Doing action: RegisterUser
MSI (s) (8C:C0) [11:53:09:134]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:53:09: SelfRegModules. Return value 1.
Action start 11:53:09: RegisterUser.
MSI (s) (8C:C0) [11:53:09:134]: Doing action: RegisterProduct
MSI (s) (8C:C0) [11:53:09:134]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:53:09: RegisterUser. Return value 0.
MSI (s) (8C:C0) [11:53:09:134]: Note: 1: 2205 2:  3: ActionText 
MSI (s) (8C:C0) [11:53:09:134]: Note: 1: 2205 2:  3: ActionText 
MSI (s) (8C:C0) [11:53:09:134]: Note: 1: 2205 2:  3: ActionText 
Action start 11:53:09: RegisterProduct.
MSI (s) (8C:C0) [11:53:09:134]: Doing action: PublishFeatures
MSI (s) (8C:C0) [11:53:09:134]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:53:09: RegisterProduct. Return value 1.
Action start 11:53:09: PublishFeatures.
MSI (s) (8C:C0) [11:53:09:134]: Doing action: PublishProduct
MSI (s) (8C:C0) [11:53:09:134]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:53:09: PublishFeatures. Return value 1.
Action start 11:53:09: PublishProduct.
MSI (s) (8C:C0) [11:53:09:134]: Doing action: InstallFinalize
MSI (s) (8C:C0) [11:53:09:134]: Note: 1: 2205 2:  3: ActionText 
Action ended 11:53:09: PublishProduct. Return value 1.
MSI (s) (8C:C0) [11:53:09:134]: Running Script: C:\Windows\Installer\MSI76C9.tmp
MSI (s) (8C:C0) [11:53:09:134]: PROPERTY CHANGE: Adding UpdateStarted property. Its value is '1'.
MSI (s) (8C:C0) [11:53:09:134]: Machine policy value 'DisableRollback' is 0
MSI (s) (8C:C0) [11:53:09:134]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2 
MSI (s) (8C:C0) [11:53:09:134]: Executing op: Header(Signature=1397708873,Version=500,Timestamp=1131372197,LangId=0,Platform=0,ScriptType=1,ScriptMajorVersion=21,ScriptMinorVersion=4,ScriptAttributes=1)
Action start 11:53:09: InstallFinalize.
MSI (s) (8C:C0) [11:53:09:180]: Executing op: ProductInfo(ProductKey={88A78260-C44D-46C3-B4E9-CA5CB8B55E9C},ProductName=chameleoprosalzgitter,PackageName=chameleoprosalzgitter.msi,Language=0,Version=16777216,Assignment=1,ObsoleteArg=0,,,PackageCode={51A3CFDE-7A9C-4EAB-B77C-9979DF68EB9C},,,InstanceType=0,LUASetting=0,RemoteURTInstalls=0,ProductDeploymentFlags=3)
MSI (s) (8C:C0) [11:53:09:180]: Executing op: DialogInfo(Type=0,Argument=0)
MSI (s) (8C:C0) [11:53:09:180]: Executing op: DialogInfo(Type=1,Argument=chameleoprosalzgitter)
MSI (s) (8C:C0) [11:53:09:180]: Executing op: RollbackInfo(,RollbackAction=Rollback,RollbackDescription=Rolling back action:,RollbackTemplate=[1],CleanupAction=RollbackCleanup,CleanupDescription=Removing backup files,CleanupTemplate=File: [1])
MSI (s) (8C:C0) [11:53:09:180]: Executing op: SetBaseline(Baseline=0,)
MSI (s) (8C:C0) [11:53:09:180]: Executing op: SetBaseline(Baseline=1,)
MSI (s) (8C:C0) [11:53:09:180]: Executing op: ActionStart(Name=RegisterProduct,Description=Registering product,Template=[1])
MSI (s) (8C:C0) [11:53:09:180]: Executing op: UpdateEstimatedSize(EstimatedSize=0)
MSI (s) (8C:C0) [11:53:09:180]: Executing op: ProductCPDisplayInfoRegister()
MSI (s) (8C:C0) [11:53:09:180]: Executing op: ActionStart(Name=PublishProduct,Description=Publishing product information,)
MSI (s) (8C:C0) [11:53:09:180]: Executing op: CleanupConfigData()
MSI (s) (8C:C0) [11:53:09:180]: Executing op: RegisterPatchOrder(Continue=0,SequenceType=1,Remove=0)
MSI (s) (8C:C0) [11:53:09:180]: Executing op: SourceListRegisterLastUsed(SourceProduct={88A78260-C44D-46C3-B4E9-CA5CB8B55E9C},LastUsedSource=C:\Users\dominik\Desktop\)
MSI (s) (8C:C0) [11:53:09:180]: Entering CMsiConfigurationManager::SetLastUsedSource.
MSI (s) (8C:C0) [11:53:09:180]: Specifed source is already in a list.
MSI (s) (8C:C0) [11:53:09:180]: User policy value 'SearchOrder' is 'nmu'
MSI (s) (8C:C0) [11:53:09:180]: Adding new sources is allowed.
MSI (s) (8C:C0) [11:53:09:180]: Set LastUsedSource to: C:\Users\dominik\Desktop\.
MSI (s) (8C:C0) [11:53:09:180]: Set LastUsedType to: n.
MSI (s) (8C:C0) [11:53:09:180]: Set LastUsedIndex to: 1.
MSI (s) (8C:C0) [11:53:09:180]: Executing op: End(Checksum=0,ProgressTotalHDWord=0,ProgressTotalLDWord=0)
MSI (s) (8C:C0) [11:53:09:180]: User policy value 'DisableRollback' is 0
MSI (s) (8C:C0) [11:53:09:180]: Machine policy value 'DisableRollback' is 0
MSI (s) (8C:C0) [11:53:09:180]: Note: 1: 2318 2:  
MSI (s) (8C:C0) [11:53:09:180]: No System Restore sequence number for this installation.
MSI (s) (8C:C0) [11:53:09:180]: Unlocking Server
MSI (s) (8C:C0) [11:53:09:227]: PROPERTY CHANGE: Deleting UpdateStarted property. Its current value is '1'.
Action ended 11:53:09: InstallFinalize. Return value 1.
Action ended 11:53:09: INSTALL. Return value 1.
Property(S): ProductCode = {88A78260-C44D-46C3-B4E9-CA5CB8B55E9C}
Property(S): Manufacturer = InstallAware Software Corporation
Property(S): ProductLanguage = 1033
Property(S): TARGETDIR = C:\
Property(S): SourceDir = C:\Users\dominik\Desktop\
Property(S): UpgradeCode = {EE211118-E17E-46C5-A8A4-BB7EAAECA07D}
Property(S): ProductName = chameleoprosalzgitter
Property(S): ProductVersion = 1.0
Property(S): MsiLogFileLocation = C:\temp\FullLog.log
Property(S): PackageCode = {51A3CFDE-7A9C-4EAB-B77C-9979DF68EB9C}
Property(S): ALLUSERS = 1
Property(S): ProductState = 5
Property(S): ProductToBeRegistered = 1
Property(S): CURRENTDIRECTORY = C:\Users\dominik
Property(S): CLIENTUILEVEL = 3
Property(S): CLIENTPROCESSID = 2720
Property(S): PRODUCTLANGUAGE = 0
Property(S): VersionDatabase = 100
Property(S): VersionMsi = 5.00
Property(S): VersionNT = 601
Property(S): WindowsBuild = 7601
Property(S): ServicePackLevel = 1
Property(S): ServicePackLevelMinor = 0
Property(S): MsiNTProductType = 1
Property(S): WindowsFolder = C:\Windows\
Property(S): WindowsVolume = C:\
Property(S): SystemFolder = C:\Windows\system32\
Property(S): System16Folder = C:\Windows\system\
Property(S): RemoteAdminTS = 1
Property(S): TempFolder = C:\temp\
Property(S): ProgramFilesFolder = C:\Program Files\
Property(S): CommonFilesFolder = C:\Program Files\Common Files\
Property(S): AppDataFolder = C:\Users\dominik\AppData\Roaming\
Property(S): FavoritesFolder = C:\Users\dominik\Favorites\
Property(S): NetHoodFolder = C:\Users\dominik\AppData\Roaming\Microsoft\Windows\Network Shortcuts\
Property(S): PersonalFolder = C:\Users\dominik\Documents\
Property(S): PrintHoodFolder = C:\Users\dominik\AppData\Roaming\Microsoft\Windows\Printer Shortcuts\
Property(S): RecentFolder = C:\Users\dominik\AppData\Roaming\Microsoft\Windows\Recent\
Property(S): SendToFolder = C:\Users\dominik\AppData\Roaming\Microsoft\Windows\SendTo\
Property(S): TemplateFolder = C:\ProgramData\Microsoft\Windows\Templates\
Property(S): CommonAppDataFolder = C:\ProgramData\
Property(S): LocalAppDataFolder = C:\Users\dominik\AppData\Local\
Property(S): MyPicturesFolder = C:\Users\dominik\Pictures\
Property(S): AdminToolsFolder = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative Tools\
Property(S): StartupFolder = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\
Property(S): ProgramMenuFolder = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\
Property(S): StartMenuFolder = C:\ProgramData\Microsoft\Windows\Start Menu\
Property(S): DesktopFolder = C:\Users\Public\Desktop\
Property(S): FontsFolder = C:\Windows\Fonts\
Property(S): GPTSupport = 1
Property(S): OLEAdvtSupport = 1
Property(S): ShellAdvtSupport = 1
Property(S): Intel = 6
Property(S): PhysicalMemory = 2048
Property(S): VirtualMemory = 3214
Property(S): AdminUser = 1
Property(S): MsiTrueAdminUser = 1
Property(S): LogonUser = domi
Property(S): UserSID = S-1-5-21-2095674808-198987235-1403064888-9937
Property(S): UserLanguageID = 1031
Property(S): ComputerName = PACKPC05
Property(S): SystemLanguageID = 1031
Property(S): ScreenX = 1024
Property(S): ScreenY = 768
Property(S): CaptionHeight = 22
Property(S): BorderTop = 1
Property(S): BorderSide = 1
Property(S): TextHeight = 16
Property(S): TextInternalLeading = 3
Property(S): ColorBits = 32
Property(S): TTCSupport = 1
Property(S): Time = 11:53:09
Property(S): Date = 15.11.2013
Property(S): MsiNetAssemblySupport = 4.0.30319.1
Property(S): MsiWin32AssemblySupport = 6.1.7601.17514
Property(S): RedirectedDllSupport = 2
Property(S): MsiRunningElevated = 1
Property(S): Privileged = 1
Property(S): USERNAME = Windows-Benutzer
Property(S): Installed = 2007/04/11 02:32:52
Property(S): DATABASE = C:\Windows\Installer\3d98c.msi
Property(S): OriginalDatabase = C:\Users\dominik\Desktop\chameleoprosalzgitter.msi
Property(S): UILevel = 2
Property(S): ACTION = INSTALL
Property(S): ROOTDRIVE = C:\
Property(S): CostingComplete = 1
Property(S): SOURCEDIR = C:\Users\dominik\Desktop\
Property(S): SourcedirProduct = {88A78260-C44D-46C3-B4E9-CA5CB8B55E9C}
Property(S): OutOfDiskSpace = 0
Property(S): OutOfNoRbDiskSpace = 0
Property(S): PrimaryVolumeSpaceAvailable = 0
Property(S): PrimaryVolumeSpaceRequired = 0
Property(S): PrimaryVolumeSpaceRemaining = 0
Property(S): INSTALLLEVEL = 1
Property(S): ARPSYSTEMCOMPONENT = 1
MSI (s) (8C:C0) [11:53:09:243]: Note: 1: 1728 
MSI (s) (8C:C0) [11:53:09:243]: Note: 1: 2205 2:  3: Error 
MSI (s) (8C:C0) [11:53:09:243]: Note: 1: 2228 2:  3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1728 
MSI (s) (8C:C0) [11:53:09:243]: Note: 1: 2205 2:  3: Error 
MSI (s) (8C:C0) [11:53:09:243]: Note: 1: 2228 2:  3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1709 
MSI (s) (8C:C0) [11:53:09:243]: Product: chameleoprosalzgitter -- Configuration completed successfully.

MSI (s) (8C:C0) [11:53:09:243]: Das Produkt wurde durch Windows Installer neu konfiguriert. Produktname: chameleoprosalzgitter. Produktversion: 1.0. Produktsprache: 1033. Hersteller: InstallAware Software Corporation. Erfolg- bzw. Fehlerstatus der neuen Konfiguration: 0.

MSI (s) (8C:C0) [11:53:09:259]: Deferring clean up of packages/files, if any exist
MSI (s) (8C:C0) [11:53:09:259]: MainEngineThread is returning 0
MSI (s) (8C:78) [11:53:09:259]: RESTART MANAGER: Session closed.
MSI (s) (8C:78) [11:53:09:259]: No System Restore sequence number for this installation.
=== Logging stopped: 15.11.2013  11:53:09 ===
MSI (s) (8C:78) [11:53:09:259]: User policy value 'DisableRollback' is 0
MSI (s) (8C:78) [11:53:09:259]: Machine policy value 'DisableRollback' is 0
MSI (s) (8C:78) [11:53:09:259]: Incrementing counter to disable shutdown. Counter after increment: 0
MSI (s) (8C:78) [11:53:09:259]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2 
MSI (s) (8C:78) [11:53:09:259]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2 
MSI (s) (8C:78) [11:53:09:259]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied.  Counter after decrement: -1
MSI (s) (8C:78) [11:53:09:259]: Restoring environment variables
MSI (s) (8C:78) [11:53:09:259]: Destroying RemoteAPI object.
MSI (s) (8C:6C) [11:53:09:259]: Custom Action Manager thread ending.
MSI (c) (A0:64) [11:53:09:259]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied.  Counter after decrement: -1
MSI (c) (A0:64) [11:53:09:259]: MainEngineThread is returning 0
=== Verbose logging stopped: 15.11.2013  11:53:09 ===


User avatar
r.wiegel
Posts: 896
Joined: 05. Feb 2010, 13:45
Location: Regensburg
Contact:

Re: Paket wird über Depot nicht installiert

Post by r.wiegel » 15. Nov 2013, 13:16

In Zeilen zwischen 80 und 100 prüft die Routine diverse Ordner. Bei Local System fehlen einige davon.
Auf dem Test Client die fehlenden Ordner anlegen und die Installation mit System noch mal testen.
Mehr dazu hier:
http://www.matrix42.com/forum/viewtopic ... f21#p48489
Viele Grüße
Roman Wiegel
IT-Consultant

MR Datentechnik - Vertriebs- und Service GmbH

dodic
Posts: 506
Joined: 03. Feb 2012, 10:51
Location: Salzgitter
Contact:

Re: Paket wird über Depot nicht installiert

Post by dodic » 15. Nov 2013, 13:56

Hey, danke für die Rückmeldung, darauf wäre ich gar nicht gekommen... Aber auch leider dies hat nichts gebracht :(

Hier das Logfile:

Code: Select all

=== Verbose logging started: 15.11.2013  13:48:55  Build type: SHIP UNICODE 5.00.7601.00  Calling process: C:\Windows\system32\msiexec.exe ===
MSI (c) (28:FC) [13:48:55:175]: Resetting cached policy values
MSI (c) (28:FC) [13:48:55:175]: Machine policy value 'Debug' is 0
MSI (c) (28:FC) [13:48:55:175]: ******* RunEngine:
           ******* Product: C:\Users\dominik\Desktop\chameleoprosalzgitter.msi
           ******* Action: 
           ******* CommandLine: **********
MSI (c) (28:FC) [13:48:55:175]: Client-side and UI is none or basic: Running entire install on the server.
MSI (c) (28:FC) [13:48:55:175]: Grabbed execution mutex.
MSI (c) (28:FC) [13:48:55:237]: Cloaking enabled.
MSI (c) (28:FC) [13:48:55:237]: Attempting to enable all disabled privileges before calling Install on Server
MSI (c) (28:FC) [13:48:55:237]: Incrementing counter to disable shutdown. Counter after increment: 0
MSI (s) (D8:78) [13:48:55:253]: Running installation inside multi-package transaction C:\Users\dominik\Desktop\chameleoprosalzgitter.msi
MSI (s) (D8:78) [13:48:55:253]: Grabbed execution mutex.
MSI (s) (D8:C8) [13:48:55:253]: Resetting cached policy values
MSI (s) (D8:C8) [13:48:55:253]: Machine policy value 'Debug' is 0
MSI (s) (D8:C8) [13:48:55:253]: ******* RunEngine:
           ******* Product: C:\Users\dominik\Desktop\chameleoprosalzgitter.msi
           ******* Action: 
           ******* CommandLine: **********
MSI (s) (D8:C8) [13:48:55:253]: Machine policy value 'DisableUserInstalls' is 0
MSI (s) (D8:C8) [13:48:55:253]: SRSetRestorePoint skipped for this transaction.
MSI (s) (D8:C8) [13:48:55:253]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer 3: 2 
MSI (s) (D8:C8) [13:48:55:269]: File will have security applied from OpCode.
MSI (s) (D8:C8) [13:48:56:956]: SOFTWARE RESTRICTION POLICY: Verifying package --> 'C:\Users\dominik\Desktop\chameleoprosalzgitter.msi' against software restriction policy
MSI (s) (D8:C8) [13:48:56:956]: Note: 1: 2262 2: DigitalSignature 3: -2147287038 
MSI (s) (D8:C8) [13:48:56:956]: SOFTWARE RESTRICTION POLICY: C:\Users\dominik\Desktop\chameleoprosalzgitter.msi is not digitally signed
MSI (s) (D8:C8) [13:48:57:019]: SOFTWARE RESTRICTION POLICY: C:\Users\dominik\Desktop\chameleoprosalzgitter.msi is permitted to run because the user token authorizes execution (system or service token).
MSI (s) (D8:C8) [13:48:57:050]: End dialog not enabled
MSI (s) (D8:C8) [13:48:57:050]: Original package ==> C:\Users\dominik\Desktop\chameleoprosalzgitter.msi
MSI (s) (D8:C8) [13:48:57:050]: Package we're running from ==> C:\Windows\Installer\124abd.msi
MSI (s) (D8:C8) [13:48:57:269]: APPCOMPAT: Compatibility mode property overrides found.
MSI (s) (D8:C8) [13:48:57:362]: APPCOMPAT: looking for appcompat database entry with ProductCode '{88A78260-C44D-46C3-B4E9-CA5CB8B55E9C}'.
MSI (s) (D8:C8) [13:48:57:362]: APPCOMPAT: no matching ProductCode found in database.
MSI (s) (D8:C8) [13:48:58:566]: MSCOREE not loaded loading copy from system32
MSI (s) (D8:C8) [13:48:58:769]: Machine policy value 'TransformsSecure' is 0
MSI (s) (D8:C8) [13:48:58:769]: User policy value 'TransformsAtSource' is 0
MSI (s) (D8:C8) [13:48:58:894]: Note: 1: 2262 2: File 3: -2147287038 
MSI (s) (D8:C8) [13:48:58:894]: Note: 1: 2205 2:  3: MsiFileHash 
MSI (s) (D8:C8) [13:48:58:894]: Machine policy value 'DisablePatch' is 0
MSI (s) (D8:C8) [13:48:58:894]: Machine policy value 'AllowLockdownPatch' is 0
MSI (s) (D8:C8) [13:48:58:894]: Machine policy value 'DisableLUAPatching' is 0
MSI (s) (D8:C8) [13:48:58:894]: Machine policy value 'DisableFlyWeightPatching' is 0
MSI (s) (D8:C8) [13:48:58:941]: APPCOMPAT: looking for appcompat database entry with ProductCode '{88A78260-C44D-46C3-B4E9-CA5CB8B55E9C}'.
MSI (s) (D8:C8) [13:48:58:941]: APPCOMPAT: no matching ProductCode found in database.
MSI (s) (D8:C8) [13:48:58:941]: Transforms are not secure.
MSI (s) (D8:C8) [13:48:58:987]: Note: 1: 2205 2:  3: Control 
MSI (s) (D8:C8) [13:48:58:987]: PROPERTY CHANGE: Adding MsiLogFileLocation property. Its value is 'C:\Temp\chameleolog.log'.
MSI (s) (D8:C8) [13:48:58:987]: Command Line: CURRENTDIRECTORY=C:\Windows\system32 CLIENTUILEVEL=3 CLIENTPROCESSID=296 
MSI (s) (D8:C8) [13:48:58:987]: PROPERTY CHANGE: Adding PackageCode property. Its value is '{51A3CFDE-7A9C-4EAB-B77C-9979DF68EB9C}'.
MSI (s) (D8:C8) [13:48:58:987]: Product Code passed to Engine.Initialize:           ''
MSI (s) (D8:C8) [13:48:58:987]: Product Code from property table before transforms: '{88A78260-C44D-46C3-B4E9-CA5CB8B55E9C}'
MSI (s) (D8:C8) [13:48:58:987]: Product Code from property table after transforms:  '{88A78260-C44D-46C3-B4E9-CA5CB8B55E9C}'
MSI (s) (D8:C8) [13:48:58:987]: Product not registered: beginning first-time install
MSI (s) (D8:C8) [13:48:59:003]: Product {88A78260-C44D-46C3-B4E9-CA5CB8B55E9C} is not managed.
MSI (s) (D8:C8) [13:48:59:003]: MSI_LUA: Credential prompt not required, user is an admin
MSI (s) (D8:C8) [13:48:59:003]: PROPERTY CHANGE: Adding ProductState property. Its value is '-1'.
MSI (s) (D8:C8) [13:48:59:003]: Entering CMsiConfigurationManager::SetLastUsedSource.
MSI (s) (D8:C8) [13:48:59:019]: User policy value 'SearchOrder' is 'nmu'
MSI (s) (D8:C8) [13:48:59:034]: Adding new sources is allowed.
MSI (s) (D8:C8) [13:48:59:034]: PROPERTY CHANGE: Adding PackagecodeChanging property. Its value is '1'.
MSI (s) (D8:C8) [13:48:59:034]: Package name extracted from package path: 'chameleoprosalzgitter.msi'
MSI (s) (D8:C8) [13:48:59:034]: Package to be registered: 'chameleoprosalzgitter.msi'
MSI (s) (D8:C8) [13:48:59:034]: Note: 1: 2205 2:  3: Error 
MSI (s) (D8:C8) [13:48:59:191]: Note: 1: 2262 2: AdminProperties 3: -2147287038 
MSI (s) (D8:C8) [13:48:59:191]: Machine policy value 'DisableMsi' is 0
MSI (s) (D8:C8) [13:48:59:191]: Machine policy value 'AlwaysInstallElevated' is 0
MSI (s) (D8:C8) [13:48:59:191]: User policy value 'AlwaysInstallElevated' is 0
MSI (s) (D8:C8) [13:48:59:191]: Running product '{88A78260-C44D-46C3-B4E9-CA5CB8B55E9C}' with user privileges: It's not assigned.
MSI (s) (D8:C8) [13:48:59:191]: PROPERTY CHANGE: Adding CURRENTDIRECTORY property. Its value is 'C:\Windows\system32'.
MSI (s) (D8:C8) [13:48:59:191]: PROPERTY CHANGE: Adding CLIENTUILEVEL property. Its value is '3'.
MSI (s) (D8:C8) [13:48:59:191]: PROPERTY CHANGE: Adding CLIENTPROCESSID property. Its value is '296'.
MSI (s) (D8:C8) [13:48:59:191]: Machine policy value 'DisableAutomaticApplicationShutdown' is 0
MSI (s) (D8:C8) [13:48:59:222]: PROPERTY CHANGE: Adding MsiRestartManagerSessionKey property. Its value is '0e04cc3140794b4cb873cfbbe3271d40'.
MSI (s) (D8:C8) [13:48:59:222]: RESTART MANAGER: Session opened.
MSI (s) (D8:C8) [13:48:59:222]: TRANSFORMS property is now: 
MSI (s) (D8:C8) [13:48:59:222]: PROPERTY CHANGE: Adding VersionDatabase property. Its value is '100'.
MSI (s) (D8:C8) [13:48:59:237]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming
MSI (s) (D8:C8) [13:48:59:237]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\Favorites
MSI (s) (D8:C8) [13:48:59:237]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Network Shortcuts
MSI (s) (D8:C8) [13:48:59:237]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\Documents
MSI (s) (D8:C8) [13:48:59:237]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Printer Shortcuts
MSI (s) (D8:C8) [13:48:59:237]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Recent
MSI (s) (D8:C8) [13:48:59:237]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\SendTo
MSI (s) (D8:C8) [13:48:59:237]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Templates
MSI (s) (D8:C8) [13:48:59:237]: SHELL32::SHGetFolderPath returned: C:\ProgramData
MSI (s) (D8:C8) [13:48:59:237]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Local
MSI (s) (D8:C8) [13:48:59:237]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\Pictures
MSI (s) (D8:C8) [13:48:59:237]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Administrative Tools
MSI (s) (D8:C8) [13:48:59:237]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
MSI (s) (D8:C8) [13:48:59:237]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Start Menu\Programs
MSI (s) (D8:C8) [13:48:59:237]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Start Menu
MSI (s) (D8:C8) [13:48:59:237]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\Desktop
MSI (s) (D8:C8) [13:48:59:237]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative Tools
MSI (s) (D8:C8) [13:48:59:237]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
MSI (s) (D8:C8) [13:48:59:237]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs
MSI (s) (D8:C8) [13:48:59:237]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu
MSI (s) (D8:C8) [13:48:59:237]: SHELL32::SHGetFolderPath returned: C:\Users\Public\Desktop
MSI (s) (D8:C8) [13:48:59:237]: SHELL32::SHGetFolderPath returned: C:\Windows\Fonts
MSI (s) (D8:C8) [13:48:59:237]: Note: 1: 2898 2: MS Sans Serif 3: MS Sans Serif 4: 0 5: 16 
MSI (s) (D8:C8) [13:48:59:237]: MSI_LUA: Setting MsiRunningElevated property to 1 because the install is already running elevated.
MSI (s) (D8:C8) [13:48:59:237]: PROPERTY CHANGE: Adding MsiRunningElevated property. Its value is '1'.
MSI (s) (D8:C8) [13:48:59:237]: PROPERTY CHANGE: Adding Privileged property. Its value is '1'.
MSI (s) (D8:C8) [13:48:59:237]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2 
MSI (s) (D8:C8) [13:48:59:237]: PROPERTY CHANGE: Adding USERNAME property. Its value is 'Windows-Benutzer'.
MSI (s) (D8:C8) [13:48:59:237]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2 
MSI (s) (D8:C8) [13:48:59:237]: PROPERTY CHANGE: Adding DATABASE property. Its value is 'C:\Windows\Installer\124abd.msi'.
MSI (s) (D8:C8) [13:48:59:237]: PROPERTY CHANGE: Adding OriginalDatabase property. Its value is 'C:\Users\dominik\Desktop\chameleoprosalzgitter.msi'.
MSI (s) (D8:C8) [13:48:59:237]: Machine policy value 'MsiDisableEmbeddedUI' is 0
MSI (s) (D8:C8) [13:48:59:237]: EEUI - Disabling MsiEmbeddedUI for service because it's not a quiet/basic install
MSI (s) (D8:C8) [13:48:59:253]: Note: 1: 2205 2:  3: PatchPackage 
MSI (s) (D8:C8) [13:48:59:253]: Machine policy value 'DisableRollback' is 0
MSI (s) (D8:C8) [13:48:59:253]: User policy value 'DisableRollback' is 0
MSI (s) (D8:C8) [13:48:59:253]: PROPERTY CHANGE: Adding UILevel property. Its value is '2'.
=== Logging started: 15.11.2013  13:48:59 ===
MSI (s) (D8:C8) [13:48:59:253]: PROPERTY CHANGE: Adding ACTION property. Its value is 'INSTALL'.
MSI (s) (D8:C8) [13:48:59:253]: Doing action: INSTALL
MSI (s) (D8:C8) [13:48:59:253]: Note: 1: 2205 2:  3: ActionText 
Action start 13:48:59: INSTALL.
MSI (s) (D8:C8) [13:48:59:253]: Running ExecuteSequence
MSI (s) (D8:C8) [13:48:59:269]: Doing action: AppSearch
MSI (s) (D8:C8) [13:48:59:269]: Note: 1: 2205 2:  3: ActionText 
MSI (s) (D8:C8) [13:48:59:269]: Note: 1: 2205 2:  3: AppSearch 
MSI (s) (D8:C8) [13:48:59:269]: Note: 1: 2228 2:  3: AppSearch 4: SELECT `Property`, `Signature_` FROM `AppSearch` 
Action start 13:48:59: AppSearch.
MSI (s) (D8:C8) [13:48:59:269]: Doing action: LaunchConditions
MSI (s) (D8:C8) [13:48:59:269]: Note: 1: 2205 2:  3: ActionText 
Action ended 13:48:59: AppSearch. Return value 0.
MSI (s) (D8:C8) [13:48:59:269]: Note: 1: 2262 2: LaunchCondition 3: -2147287038 
Action start 13:48:59: LaunchConditions.
MSI (s) (D8:C8) [13:48:59:269]: Doing action: ValidateProductID
MSI (s) (D8:C8) [13:48:59:269]: Note: 1: 2205 2:  3: ActionText 
Action ended 13:48:59: LaunchConditions. Return value 1.
Action start 13:48:59: ValidateProductID.
MSI (s) (D8:C8) [13:48:59:269]: Doing action: CostInitialize
MSI (s) (D8:C8) [13:48:59:269]: Note: 1: 2205 2:  3: ActionText 
Action ended 13:48:59: ValidateProductID. Return value 1.
MSI (s) (D8:C8) [13:48:59:269]: Machine policy value 'MaxPatchCacheSize' is 10
MSI (s) (D8:C8) [13:48:59:269]: PROPERTY CHANGE: Adding ROOTDRIVE property. Its value is 'C:\'.
MSI (s) (D8:C8) [13:48:59:269]: PROPERTY CHANGE: Adding CostingComplete property. Its value is '0'.
MSI (s) (D8:C8) [13:48:59:269]: Note: 1: 2205 2:  3: Patch 
MSI (s) (D8:C8) [13:48:59:269]: Note: 1: 2205 2:  3: PatchPackage 
MSI (s) (D8:C8) [13:48:59:269]: Note: 1: 2205 2:  3: MsiPatchHeaders 
MSI (s) (D8:C8) [13:48:59:269]: Note: 1: 2205 2:  3: __MsiPatchFileList 
MSI (s) (D8:C8) [13:48:59:269]: Note: 1: 2205 2:  3: PatchPackage 
MSI (s) (D8:C8) [13:48:59:269]: Note: 1: 2228 2:  3: PatchPackage 4: SELECT `DiskId`, `PatchId`, `LastSequence` FROM `Media`, `PatchPackage` WHERE `Media`.`DiskId`=`PatchPackage`.`Media_` ORDER BY `DiskId`  
MSI (s) (D8:C8) [13:48:59:269]: Note: 1: 2205 2:  3: Patch 
Action start 13:48:59: CostInitialize.
MSI (s) (D8:C8) [13:48:59:269]: Doing action: ResolveSource
MSI (s) (D8:C8) [13:48:59:269]: Note: 1: 2205 2:  3: ActionText 
Action ended 13:48:59: CostInitialize. Return value 1.
MSI (s) (D8:C8) [13:48:59:269]: Resolving source.
MSI (s) (D8:C8) [13:48:59:269]: Resolving source to launched-from source.
MSI (s) (D8:C8) [13:48:59:269]: Setting launched-from source as last-used.
MSI (s) (D8:C8) [13:48:59:269]: PROPERTY CHANGE: Adding SourceDir property. Its value is 'C:\Users\dominik\Desktop\'.
MSI (s) (D8:C8) [13:48:59:269]: PROPERTY CHANGE: Adding SOURCEDIR property. Its value is 'C:\Users\dominik\Desktop\'.
MSI (s) (D8:C8) [13:48:59:269]: PROPERTY CHANGE: Adding SourcedirProduct property. Its value is '{88A78260-C44D-46C3-B4E9-CA5CB8B55E9C}'.
MSI (s) (D8:C8) [13:48:59:269]: SOURCEDIR ==> C:\Users\dominik\Desktop\
MSI (s) (D8:C8) [13:48:59:269]: SOURCEDIR product ==> {88A78260-C44D-46C3-B4E9-CA5CB8B55E9C}
MSI (s) (D8:C8) [13:48:59:269]: Determining source type
MSI (s) (D8:C8) [13:48:59:269]: Source type from package 'chameleoprosalzgitter.msi': 0
MSI (s) (D8:C8) [13:48:59:269]: Source path resolution complete. Dumping Directory table...
MSI (s) (D8:C8) [13:48:59:269]: Dir (source): Key: TARGETDIR	, Object: C:\Users\dominik\Desktop\	, LongSubPath: 	, ShortSubPath: 
Action start 13:48:59: ResolveSource.
MSI (s) (D8:C8) [13:48:59:269]: Doing action: FileCost
MSI (s) (D8:C8) [13:48:59:269]: Note: 1: 2205 2:  3: ActionText 
Action ended 13:48:59: ResolveSource. Return value 1.
MSI (s) (D8:C8) [13:48:59:284]: Note: 1: 2205 2:  3: MsiAssembly 
MSI (s) (D8:C8) [13:48:59:284]: Note: 1: 2205 2:  3: Class 
MSI (s) (D8:C8) [13:48:59:284]: Note: 1: 2205 2:  3: Extension 
MSI (s) (D8:C8) [13:48:59:284]: Note: 1: 2205 2:  3: TypeLib 
Action start 13:48:59: FileCost.
MSI (s) (D8:C8) [13:48:59:284]: Doing action: CostFinalize
MSI (s) (D8:C8) [13:48:59:284]: Note: 1: 2205 2:  3: ActionText 
Action ended 13:48:59: FileCost. Return value 1.
MSI (s) (D8:C8) [13:48:59:284]: PROPERTY CHANGE: Adding OutOfDiskSpace property. Its value is '0'.
MSI (s) (D8:C8) [13:48:59:284]: PROPERTY CHANGE: Adding OutOfNoRbDiskSpace property. Its value is '0'.
MSI (s) (D8:C8) [13:48:59:284]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceAvailable property. Its value is '0'.
MSI (s) (D8:C8) [13:48:59:284]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRequired property. Its value is '0'.
MSI (s) (D8:C8) [13:48:59:284]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRemaining property. Its value is '0'.
MSI (s) (D8:C8) [13:48:59:284]: Note: 1: 2205 2:  3: Patch 
MSI (s) (D8:C8) [13:48:59:284]: Note: 1: 2205 2:  3: Condition 
MSI (s) (D8:C8) [13:48:59:284]: PROPERTY CHANGE: Adding TARGETDIR property. Its value is 'C:\'.
MSI (s) (D8:C8) [13:48:59:284]: Target path resolution complete. Dumping Directory table...
MSI (s) (D8:C8) [13:48:59:284]: Note: target paths subject to change (via custom actions or browsing)
MSI (s) (D8:C8) [13:48:59:284]: Dir (target): Key: TARGETDIR	, Object: C:\
MSI (s) (D8:C8) [13:48:59:284]: Dir (target): Key: WindowsFolder	, Object: C:\Windows\
MSI (s) (D8:C8) [13:48:59:284]: PROPERTY CHANGE: Adding INSTALLLEVEL property. Its value is '1'.
Action start 13:48:59: CostFinalize.
MSI (s) (D8:C8) [13:48:59:284]: Doing action: InstallValidate
MSI (s) (D8:C8) [13:48:59:284]: Note: 1: 2205 2:  3: ActionText 
Action ended 13:48:59: CostFinalize. Return value 1.
MSI (s) (D8:C8) [13:48:59:284]: PROPERTY CHANGE: Deleting MsiRestartManagerSessionKey property. Its current value is '0e04cc3140794b4cb873cfbbe3271d40'.
MSI (s) (D8:C8) [13:48:59:284]: Note: 1: 2205 2:  3: Dialog 
MSI (s) (D8:C8) [13:48:59:284]: Feature: MsiGroupPolicy; Installed: Absent;   Request: Local;   Action: Local
MSI (s) (D8:C8) [13:48:59:284]: Component: MsiGroupPolicy; Installed: Absent;   Request: Local;   Action: Local
MSI (s) (D8:C8) [13:48:59:284]: Component: __MsiGroupPolicy65; Installed: Null;   Request: Local;   Action: Local
MSI (s) (D8:C8) [13:48:59:284]: Note: 1: 2205 2:  3: BindImage 
MSI (s) (D8:C8) [13:48:59:284]: Note: 1: 2205 2:  3: ProgId 
MSI (s) (D8:C8) [13:48:59:284]: Note: 1: 2205 2:  3: PublishComponent 
MSI (s) (D8:C8) [13:48:59:284]: Note: 1: 2205 2:  3: SelfReg 
MSI (s) (D8:C8) [13:48:59:284]: Note: 1: 2205 2:  3: Extension 
MSI (s) (D8:C8) [13:48:59:284]: Note: 1: 2205 2:  3: Font 
MSI (s) (D8:C8) [13:48:59:284]: Note: 1: 2205 2:  3: Shortcut 
MSI (s) (D8:C8) [13:48:59:284]: Note: 1: 2205 2:  3: Class 
MSI (s) (D8:C8) [13:48:59:284]: Note: 1: 2205 2:  3: Icon 
MSI (s) (D8:C8) [13:48:59:284]: Note: 1: 2205 2:  3: TypeLib 
Action start 13:48:59: InstallValidate.
MSI (s) (D8:C8) [13:48:59:284]: Note: 1: 2205 2:  3: MsiAssembly 
MSI (s) (D8:C8) [13:48:59:284]: Note: 1: 2228 2:  3: MsiAssembly 4:  SELECT `MsiAssembly`.`Attributes`, `MsiAssembly`.`File_Application`, `MsiAssembly`.`File_Manifest`,  `Component`.`KeyPath` FROM `MsiAssembly`, `Component` WHERE  `MsiAssembly`.`Component_` = `Component`.`Component` AND `MsiAssembly`.`Component_` = ? 
MSI (s) (D8:C8) [13:48:59:284]: PROPERTY CHANGE: Modifying CostingComplete property. Its current value is '0'. Its new value: '1'.
MSI (s) (D8:C8) [13:48:59:284]: Note: 1: 2205 2:  3: BindImage 
MSI (s) (D8:C8) [13:48:59:284]: Note: 1: 2205 2:  3: ProgId 
MSI (s) (D8:C8) [13:48:59:284]: Note: 1: 2205 2:  3: PublishComponent 
MSI (s) (D8:C8) [13:48:59:284]: Note: 1: 2205 2:  3: SelfReg 
MSI (s) (D8:C8) [13:48:59:284]: Note: 1: 2205 2:  3: Extension 
MSI (s) (D8:C8) [13:48:59:284]: Note: 1: 2205 2:  3: Font 
MSI (s) (D8:C8) [13:48:59:284]: Note: 1: 2205 2:  3: Shortcut 
MSI (s) (D8:C8) [13:48:59:284]: Note: 1: 2205 2:  3: Class 
MSI (s) (D8:C8) [13:48:59:284]: Note: 1: 2205 2:  3: Icon 
MSI (s) (D8:C8) [13:48:59:284]: Note: 1: 2205 2:  3: TypeLib 
MSI (s) (D8:C8) [13:48:59:284]: Note: 1: 2727 2:  
MSI (s) (D8:C8) [13:48:59:284]: Note: 1: 2205 2:  3: FilesInUse 
MSI (s) (D8:C8) [13:48:59:441]: Note: 1: 2727 2:  
MSI (s) (D8:C8) [13:48:59:441]: Doing action: InstallInitialize
MSI (s) (D8:C8) [13:48:59:441]: Note: 1: 2205 2:  3: ActionText 
Action ended 13:48:59: InstallValidate. Return value 1.
MSI (s) (D8:C8) [13:48:59:441]: Machine policy value 'AlwaysInstallElevated' is 0
MSI (s) (D8:C8) [13:48:59:441]: User policy value 'AlwaysInstallElevated' is 0
MSI (s) (D8:C8) [13:48:59:441]: BeginTransaction: Locking Server
MSI (s) (D8:C8) [13:48:59:441]: SRSetRestorePoint skipped for this transaction.
MSI (s) (D8:C8) [13:48:59:441]: Server not locked: locking for product {88A78260-C44D-46C3-B4E9-CA5CB8B55E9C}
Action start 13:48:59: InstallInitialize.
MSI (s) (D8:C8) [13:48:59:753]: Doing action: GPDEPLOY
MSI (s) (D8:C8) [13:48:59:753]: Note: 1: 2205 2:  3: ActionText 
Action ended 13:48:59: InstallInitialize. Return value 1.
MSI (s) (D8:C8) [13:48:59:769]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'GPDEPLOY' 
MSI (s) (D8:C4) [13:48:59:769]: Invoking remote custom action. DLL: C:\Windows\Installer\MSI5C60.tmp, Entrypoint: GPProc
MSI (s) (D8:74) [13:48:59:769]: Generating random cookie.
MSI (s) (D8:74) [13:48:59:769]: Created Custom Action Server with PID 2688 (0xA80).
MSI (s) (D8:58) [13:48:59:800]: Running as a service.
MSI (s) (D8:58) [13:48:59:800]: Hello, I'm your 32bit Elevated custom action server.
MSI (s) (D8!C0) [13:49:00:128]: PROPERTY CHANGE: Adding ARPSYSTEMCOMPONENT property. Its value is '1'.
Action start 13:48:59: GPDEPLOY.
MSI (s) (D8:C8) [13:49:03:284]: Doing action: ProcessComponents
MSI (s) (D8:C8) [13:49:03:284]: Note: 1: 2205 2:  3: ActionText 
Action ended 13:49:03: GPDEPLOY. Return value 1.
MSI (s) (D8:C8) [13:49:03:284]: Note: 1: 2205 2:  3: MsiPatchCertificate 
MSI (s) (D8:C8) [13:49:03:284]: LUA patching is disabled: missing MsiPatchCertificate table
MSI (s) (D8:C8) [13:49:03:284]: Note: 1: 2205 2:  3: ActionText 
MSI (s) (D8:C8) [13:49:03:284]: Note: 1: 2205 2:  3: ActionText 
MSI (s) (D8:C8) [13:49:03:284]: Note: 1: 2205 2:  3: ActionText 
Action start 13:49:03: ProcessComponents.
MSI (s) (D8:C8) [13:49:03:378]: Doing action: UnpublishFeatures
MSI (s) (D8:C8) [13:49:03:378]: Note: 1: 2205 2:  3: ActionText 
Action ended 13:49:03: ProcessComponents. Return value 1.
Action start 13:49:03: UnpublishFeatures.
MSI (s) (D8:C8) [13:49:03:394]: Doing action: RemoveRegistryValues
MSI (s) (D8:C8) [13:49:03:394]: Note: 1: 2205 2:  3: ActionText 
Action ended 13:49:03: UnpublishFeatures. Return value 1.
Action start 13:49:03: RemoveRegistryValues.
MSI (s) (D8:C8) [13:49:03:394]: Doing action: RemoveIniValues
MSI (s) (D8:C8) [13:49:03:394]: Note: 1: 2205 2:  3: ActionText 
Action ended 13:49:03: RemoveRegistryValues. Return value 1.
MSI (s) (D8:C8) [13:49:03:394]: Note: 1: 2205 2:  3: IniFile 
MSI (s) (D8:C8) [13:49:03:394]: Note: 1: 2228 2:  3: IniFile 4: SELECT `FileName`,`IniFile`.`DirProperty`,`Section`,`IniFile`.`Key`,`IniFile`.`Value`,`IniFile`.`Action` FROM `IniFile`, `Component` WHERE `Component`=`Component_` AND `Component`.`Action`=0 ORDER BY `FileName`,`Section` 
Action start 13:49:03: RemoveIniValues.
MSI (s) (D8:C8) [13:49:03:394]: Doing action: RemoveFiles
MSI (s) (D8:C8) [13:49:03:394]: Note: 1: 2205 2:  3: ActionText 
Action ended 13:49:03: RemoveIniValues. Return value 1.
MSI (s) (D8:C8) [13:49:03:409]: Note: 1: 2205 2:  3: RemoveFile 
MSI (s) (D8:C8) [13:49:03:409]: Note: 1: 2205 2:  3: RemoveFile 
Action start 13:49:03: RemoveFiles.
MSI (s) (D8:C8) [13:49:03:409]: Doing action: InstallFiles
MSI (s) (D8:C8) [13:49:03:409]: Note: 1: 2205 2:  3: ActionText 
Action ended 13:49:03: RemoveFiles. Return value 0.
MSI (s) (D8:C8) [13:49:03:425]: Note: 1: 2205 2:  3: Patch 
MSI (s) (D8:C8) [13:49:03:425]: Note: 1: 2228 2:  3: Patch 4: SELECT `Patch`.`File_`, `Patch`.`Header`, `Patch`.`Attributes`, `Patch`.`Sequence`, `Patch`.`StreamRef_` FROM `Patch` WHERE `Patch`.`File_` = ? AND `Patch`.`#_MsiActive`=? ORDER BY `Patch`.`Sequence` 
MSI (s) (D8:C8) [13:49:03:425]: Note: 1: 2205 2:  3: Error 
MSI (s) (D8:C8) [13:49:03:425]: Note: 1: 2228 2:  3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1302 
MSI (s) (D8:C8) [13:49:03:425]: Note: 1: 2205 2:  3: MsiSFCBypass 
MSI (s) (D8:C8) [13:49:03:425]: Note: 1: 2228 2:  3: MsiSFCBypass 4: SELECT `File_` FROM `MsiSFCBypass` WHERE `File_` = ? 
MSI (s) (D8:C8) [13:49:03:425]: Note: 1: 2205 2:  3: MsiPatchHeaders 
MSI (s) (D8:C8) [13:49:03:425]: Note: 1: 2228 2:  3: MsiPatchHeaders 4: SELECT `Header` FROM `MsiPatchHeaders` WHERE `StreamRef` = ? 
Action start 13:49:03: InstallFiles.
MSI (s) (D8:C8) [13:49:03:425]: Doing action: WriteRegistryValues
MSI (s) (D8:C8) [13:49:03:425]: Note: 1: 2205 2:  3: ActionText 
Action ended 13:49:03: InstallFiles. Return value 1.
Action start 13:49:03: WriteRegistryValues.
MSI (s) (D8:C8) [13:49:03:441]: Doing action: WriteIniValues
MSI (s) (D8:C8) [13:49:03:441]: Note: 1: 2205 2:  3: ActionText 
Action ended 13:49:03: WriteRegistryValues. Return value 1.
MSI (s) (D8:C8) [13:49:03:441]: Note: 1: 2205 2:  3: IniFile 
MSI (s) (D8:C8) [13:49:03:441]: Note: 1: 2228 2:  3: IniFile 4: SELECT `FileName`,`IniFile`.`DirProperty`,`Section`,`IniFile`.`Key`,`IniFile`.`Value`,`IniFile`.`Action` FROM `IniFile`, `Component` WHERE `Component`=`Component_` AND (`Component`.`Action`=1 OR `Component`.`Action`=2) ORDER BY `FileName`,`Section` 
Action start 13:49:03: WriteIniValues.
MSI (s) (D8:C8) [13:49:03:441]: Doing action: SelfRegModules
MSI (s) (D8:C8) [13:49:03:441]: Note: 1: 2205 2:  3: ActionText 
Action ended 13:49:03: WriteIniValues. Return value 1.
MSI (s) (D8:C8) [13:49:03:441]: Note: 1: 2205 2:  3: SelfReg 
MSI (s) (D8:C8) [13:49:03:441]: Note: 1: 2228 2:  3: SelfReg 4: Select `FileAction`.`FileName`,`FileAction`.`Directory_`,`FileAction`.`Action`, `FileAction`.`Component_`,`SelfReg`.`File_` From `SelfReg`, `FileAction` Where `SelfReg`.`File_` = `FileAction`.`File`  And (`FileAction`.`Action` = 1 OR `FileAction`.`Action` = 2) 
Action start 13:49:03: SelfRegModules.
MSI (s) (D8:C8) [13:49:03:441]: Doing action: RegisterUser
MSI (s) (D8:C8) [13:49:03:441]: Note: 1: 2205 2:  3: ActionText 
Action ended 13:49:03: SelfRegModules. Return value 1.
Action start 13:49:03: RegisterUser.
MSI (s) (D8:C8) [13:49:03:441]: Doing action: RegisterProduct
MSI (s) (D8:C8) [13:49:03:441]: Note: 1: 2205 2:  3: ActionText 
Action ended 13:49:03: RegisterUser. Return value 1.
MSI (s) (D8:C8) [13:49:03:441]: Note: 1: 2205 2:  3: Error 
MSI (s) (D8:C8) [13:49:03:441]: Note: 1: 2228 2:  3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1302 
Action start 13:49:03: RegisterProduct.
MSI (s) (D8:C8) [13:49:03:441]: PROPERTY CHANGE: Adding ProductToBeRegistered property. Its value is '1'.
MSI (s) (D8:C8) [13:49:03:441]: Doing action: PublishFeatures
MSI (s) (D8:C8) [13:49:03:441]: Note: 1: 2205 2:  3: ActionText 
Action ended 13:49:03: RegisterProduct. Return value 1.
Action start 13:49:03: PublishFeatures.
MSI (s) (D8:C8) [13:49:03:441]: Doing action: PublishProduct
MSI (s) (D8:C8) [13:49:03:441]: Note: 1: 2205 2:  3: ActionText 
Action ended 13:49:03: PublishFeatures. Return value 1.
MSI (s) (D8:C8) [13:49:03:487]: Note: 1: 2205 2:  3: Icon 
MSI (s) (D8:C8) [13:49:03:487]: Note: 1: 2228 2:  3: Icon 4: SELECT `Name`, `Data` FROM `Icon` 
Action start 13:49:03: PublishProduct.
MSI (s) (D8:C8) [13:49:03:487]: Doing action: InstallFinalize
MSI (s) (D8:C8) [13:49:03:487]: Note: 1: 2205 2:  3: ActionText 
Action ended 13:49:03: PublishProduct. Return value 1.
MSI (s) (D8:C8) [13:49:03:534]: Running Script: C:\Windows\Installer\MSI6A1D.tmp
MSI (s) (D8:C8) [13:49:03:534]: PROPERTY CHANGE: Adding UpdateStarted property. Its value is '1'.
MSI (s) (D8:C8) [13:49:03:534]: Machine policy value 'DisableRollback' is 0
MSI (s) (D8:C8) [13:49:03:550]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2 
MSI (s) (D8:C8) [13:49:03:550]: Executing op: Header(Signature=1397708873,Version=500,Timestamp=1131376162,LangId=0,Platform=0,ScriptType=1,ScriptMajorVersion=21,ScriptMinorVersion=4,ScriptAttributes=0)
Action start 13:49:03: InstallFinalize.
MSI (s) (D8:C8) [13:49:03:550]: Executing op: ProductInfo(ProductKey={88A78260-C44D-46C3-B4E9-CA5CB8B55E9C},ProductName=chameleoprosalzgitter,PackageName=chameleoprosalzgitter.msi,Language=0,Version=16777216,Assignment=0,ObsoleteArg=0,,,PackageCode={51A3CFDE-7A9C-4EAB-B77C-9979DF68EB9C},,,InstanceType=0,LUASetting=0,RemoteURTInstalls=0,ProductDeploymentFlags=3)
MSI (s) (D8:C8) [13:49:03:550]: SHELL32::SHGetFolderPath returned: C:\Windows\system32\config\systemprofile\AppData\Roaming
MSI (s) (D8:C8) [13:49:03:550]: Executing op: DialogInfo(Type=0,Argument=0)
MSI (s) (D8:C8) [13:49:03:550]: Executing op: DialogInfo(Type=1,Argument=chameleoprosalzgitter)
MSI (s) (D8:C8) [13:49:03:550]: Executing op: RollbackInfo(,RollbackAction=Rollback,RollbackDescription=Rolling back action:,RollbackTemplate=[1],CleanupAction=RollbackCleanup,CleanupDescription=Removing backup files,CleanupTemplate=File: [1])
MSI (s) (D8:C8) [13:49:03:566]: Executing op: SetBaseline(Baseline=0,)
MSI (s) (D8:C8) [13:49:03:566]: Executing op: SetBaseline(Baseline=1,)
MSI (s) (D8:C8) [13:49:03:566]: Executing op: ActionStart(Name=ProcessComponents,Description=Updating component registration,)
MSI (s) (D8:C8) [13:49:03:581]: Executing op: ProgressTotal(Total=1,Type=1,ByteEquivalent=24000)
MSI (s) (D8:C8) [13:49:03:581]: Executing op: ComponentRegister(ComponentId={E6CDE412-884C-447A-9B49-7C429726CB1B},KeyPath=02:\SOFTWARE\InstallAware\InstalledByGpl,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)
MSI (s) (D8:C8) [13:49:03:581]: Executing op: ActionStart(Name=WriteRegistryValues,Description=Writing system registry values,Template=Key: [1], Name: [2], Value: [3])
MSI (s) (D8:C8) [13:49:03:581]: Executing op: ProgressTotal(Total=1,Type=1,ByteEquivalent=13200)
MSI (s) (D8:C8) [13:49:03:581]: Executing op: RegOpenKey(Root=-2147483646,Key=SOFTWARE\InstallAware,,BinaryType=0,,)
MSI (s) (D8:C8) [13:49:03:581]: Executing op: RegAddValue(Name=InstalledByGpl,Value=#1,)
MSI (s) (D8:C8) [13:49:03:581]: Executing op: ActionStart(Name=RegisterProduct,Description=Registering product,Template=[1])
MSI (s) (D8:C8) [13:49:03:581]: Executing op: ChangeMedia(,MediaPrompt=Please insert the disk: ,,BytesPerTick=0,CopierType=0,,,,,,IsFirstPhysicalMedia=1)
MSI (s) (D8:C8) [13:49:03:581]: Executing op: DatabaseCopy(DatabasePath=C:\Windows\Installer\124abd.msi,ProductCode={88A78260-C44D-46C3-B4E9-CA5CB8B55E9C},,,)
MSI (s) (D8:C8) [13:49:03:581]: Note: 1: 1402 2: UNKNOWN\Products\06287A88D44C3C644B9EACC58B5BE5C9\InstallProperties 3: 2 
MSI (s) (D8:C8) [13:49:03:581]: File will have security applied from OpCode.
MSI (s) (D8:C8) [13:49:03:784]: Executing op: ProductRegister(UpgradeCode={EE211118-E17E-46C5-A8A4-BB7EAAECA07D},VersionString=1.0,,,,InstallSource=C:\Users\dominik\Desktop\,Publisher=InstallAware Software Corporation,,,,,,,,,,,SystemComponent=1,EstimatedSize=126941,,,,)
MSI (s) (D8:C8) [13:49:03:800]: Executing op: ProductCPDisplayInfoRegister()
MSI (s) (D8:C8) [13:49:03:816]: Executing op: ActionStart(Name=PublishFeatures,Description=Publishing Product Features,Template=Feature: [1])
MSI (s) (D8:C8) [13:49:03:816]: Executing op: FeaturePublish(Feature=MsiGroupPolicy,,Absent=2,Component=${B3sgai!=wGBG9xY@x+)
MSI (s) (D8:C8) [13:49:03:816]: Executing op: ActionStart(Name=PublishProduct,Description=Publishing product information,)
MSI (s) (D8:C8) [13:49:03:816]: Executing op: CleanupConfigData()
MSI (s) (D8:C8) [13:49:03:816]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\06287A88D44C3C644B9EACC58B5BE5C9\Patches 3: 2 
MSI (s) (D8:C8) [13:49:03:816]: Executing op: RegisterPatchOrder(Continue=0,SequenceType=1,Remove=0)
MSI (s) (D8:C8) [13:49:03:816]: Note: 1: 1402 2: UNKNOWN\Products\06287A88D44C3C644B9EACC58B5BE5C9\Patches 3: 2 
MSI (s) (D8:C8) [13:49:03:816]: Executing op: ProductPublish(PackageKey={51A3CFDE-7A9C-4EAB-B77C-9979DF68EB9C})
MSI (s) (D8:C8) [13:49:03:816]: Note: 1: 1402 2: UNKNOWN\Installer\Products\06287A88D44C3C644B9EACC58B5BE5C9 3: 2 
MSI (s) (D8:C8) [13:49:03:816]: Note: 1: 1402 2: UNKNOWN\Installer\Products\06287A88D44C3C644B9EACC58B5BE5C9 3: 2 
MSI (s) (D8:C8) [13:49:03:816]: Note: 1: 1402 2: UNKNOWN\Installer\Products\06287A88D44C3C644B9EACC58B5BE5C9 3: 2 
MSI (s) (D8:C8) [13:49:03:816]: Note: 1: 1402 2: UNKNOWN\Installer\Products\06287A88D44C3C644B9EACC58B5BE5C9 3: 2 
MSI (s) (D8:C8) [13:49:03:816]: Note: 1: 1402 2: UNKNOWN\Installer\Products\06287A88D44C3C644B9EACC58B5BE5C9 3: 2 
MSI (s) (D8:C8) [13:49:03:816]: Note: 1: 1402 2: UNKNOWN\Installer\Products\06287A88D44C3C644B9EACC58B5BE5C9 3: 2 
MSI (s) (D8:C8) [13:49:03:816]: Note: 1: 1402 2: UNKNOWN\Installer\Products\06287A88D44C3C644B9EACC58B5BE5C9 3: 2 
MSI (s) (D8:C8) [13:49:03:816]: Note: 1: 1402 2: UNKNOWN\Installer\Products\06287A88D44C3C644B9EACC58B5BE5C9 3: 2 
MSI (s) (D8:C8) [13:49:03:816]: Note: 1: 1402 2: UNKNOWN\Installer\Products\06287A88D44C3C644B9EACC58B5BE5C9 3: 2 
MSI (s) (D8:C8) [13:49:03:816]: Note: 1: 1402 2: UNKNOWN\Installer\Products\06287A88D44C3C644B9EACC58B5BE5C9 3: 2 
MSI (s) (D8:C8) [13:49:03:816]: Note: 1: 1402 2: UNKNOWN\Installer\Products\06287A88D44C3C644B9EACC58B5BE5C9 3: 2 
MSI (s) (D8:C8) [13:49:03:816]: Executing op: UpgradeCodePublish(UpgradeCode={EE211118-E17E-46C5-A8A4-BB7EAAECA07D})
MSI (s) (D8:C8) [13:49:03:816]: Executing op: SourceListPublish(,,,,NumberOfDisks=1)
MSI (s) (D8:C8) [13:49:03:816]: Note: 1: 1402 2: UNKNOWN\Installer\Products\06287A88D44C3C644B9EACC58B5BE5C9\SourceList 3: 2 
MSI (s) (D8:C8) [13:49:03:816]: Executing op: ProductPublishClient(,,)
MSI (s) (D8:C8) [13:49:03:816]: Executing op: SourceListRegisterLastUsed(SourceProduct={88A78260-C44D-46C3-B4E9-CA5CB8B55E9C},LastUsedSource=C:\Users\dominik\Desktop\)
MSI (s) (D8:C8) [13:49:03:816]: Entering CMsiConfigurationManager::SetLastUsedSource.
MSI (s) (D8:C8) [13:49:03:816]: Specifed source is already in a list.
MSI (s) (D8:C8) [13:49:03:816]: User policy value 'SearchOrder' is 'nmu'
MSI (s) (D8:C8) [13:49:03:816]: Adding new sources is allowed.
MSI (s) (D8:C8) [13:49:03:816]: Set LastUsedSource to: C:\Users\dominik\Desktop\.
MSI (s) (D8:C8) [13:49:03:816]: Set LastUsedType to: n.
MSI (s) (D8:C8) [13:49:03:816]: Set LastUsedIndex to: 1.
MSI (s) (D8:C8) [13:49:03:816]: Executing op: End(Checksum=0,ProgressTotalHDWord=0,ProgressTotalLDWord=130023248)
MSI (s) (D8:C8) [13:49:03:816]: User policy value 'DisableRollback' is 0
MSI (s) (D8:C8) [13:49:03:816]: Machine policy value 'DisableRollback' is 0
MSI (s) (D8:C8) [13:49:03:862]: Note: 1: 2318 2:  
MSI (s) (D8:C8) [13:49:03:862]: No System Restore sequence number for this installation.
MSI (s) (D8:C8) [13:49:03:862]: Unlocking Server
MSI (s) (D8:C8) [13:49:03:878]: PROPERTY CHANGE: Deleting UpdateStarted property. Its current value is '1'.
Action ended 13:49:03: InstallFinalize. Return value 1.
Action ended 13:49:03: INSTALL. Return value 1.
Property(S): ProductCode = {88A78260-C44D-46C3-B4E9-CA5CB8B55E9C}
Property(S): Manufacturer = InstallAware Software Corporation
Property(S): ProductLanguage = 1033
Property(S): TARGETDIR = C:\
Property(S): SourceDir = C:\Users\dominik\Desktop\
Property(S): UpgradeCode = {EE211118-E17E-46C5-A8A4-BB7EAAECA07D}
Property(S): ProductName = chameleoprosalzgitter
Property(S): ProductVersion = 1.0
Property(S): MsiLogFileLocation = C:\Temp\chameleolog.log
Property(S): PackageCode = {51A3CFDE-7A9C-4EAB-B77C-9979DF68EB9C}
Property(S): ProductState = -1
Property(S): PackagecodeChanging = 1
Property(S): CURRENTDIRECTORY = C:\Windows\system32
Property(S): CLIENTUILEVEL = 3
Property(S): CLIENTPROCESSID = 296
Property(S): VersionDatabase = 100
Property(S): VersionMsi = 5.00
Property(S): VersionNT = 601
Property(S): WindowsBuild = 7601
Property(S): ServicePackLevel = 1
Property(S): ServicePackLevelMinor = 0
Property(S): MsiNTProductType = 1
Property(S): WindowsFolder = C:\Windows\
Property(S): WindowsVolume = C:\
Property(S): SystemFolder = C:\Windows\system32\
Property(S): System16Folder = C:\Windows\system\
Property(S): RemoteAdminTS = 1
Property(S): TempFolder = C:\Temp\
Property(S): ProgramFilesFolder = C:\Program Files\
Property(S): CommonFilesFolder = C:\Program Files\Common Files\
Property(S): AppDataFolder = C:\Windows\system32\config\systemprofile\AppData\Roaming\
Property(S): FavoritesFolder = C:\Windows\system32\config\systemprofile\Favorites\
Property(S): NetHoodFolder = C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Network Shortcuts\
Property(S): PersonalFolder = C:\Windows\system32\config\systemprofile\Documents\
Property(S): PrintHoodFolder = C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Printer Shortcuts\
Property(S): RecentFolder = C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Recent\
Property(S): SendToFolder = C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\SendTo\
Property(S): TemplateFolder = C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Templates\
Property(S): CommonAppDataFolder = C:\ProgramData\
Property(S): LocalAppDataFolder = C:\Windows\system32\config\systemprofile\AppData\Local\
Property(S): MyPicturesFolder = C:\Windows\system32\config\systemprofile\Pictures\
Property(S): AdminToolsFolder = C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Administrative Tools\
Property(S): StartupFolder = C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup\
Property(S): ProgramMenuFolder = C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\
Property(S): StartMenuFolder = C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Start Menu\
Property(S): DesktopFolder = C:\Windows\system32\config\systemprofile\Desktop\
Property(S): FontsFolder = C:\Windows\Fonts\
Property(S): GPTSupport = 1
Property(S): OLEAdvtSupport = 1
Property(S): ShellAdvtSupport = 1
Property(S): Intel = 6
Property(S): PhysicalMemory = 2048
Property(S): VirtualMemory = 3180
Property(S): AdminUser = 1
Property(S): MsiTrueAdminUser = 1
Property(S): LogonUser = SYSTEM
Property(S): UserSID = S-1-5-18
Property(S): UserLanguageID = 1031
Property(S): ComputerName = PACKPC05
Property(S): SystemLanguageID = 1031
Property(S): ScreenX = 1024
Property(S): ScreenY = 768
Property(S): CaptionHeight = 22
Property(S): BorderTop = 1
Property(S): BorderSide = 1
Property(S): TextHeight = 16
Property(S): TextInternalLeading = 3
Property(S): ColorBits = 32
Property(S): TTCSupport = 1
Property(S): Time = 13:49:03
Property(S): Date = 15.11.2013
Property(S): MsiNetAssemblySupport = 4.0.30319.1
Property(S): MsiWin32AssemblySupport = 6.1.7601.17514
Property(S): RedirectedDllSupport = 2
Property(S): MsiRunningElevated = 1
Property(S): Privileged = 1
Property(S): USERNAME = Windows-Benutzer
Property(S): DATABASE = C:\Windows\Installer\124abd.msi
Property(S): OriginalDatabase = C:\Users\dominik\Desktop\chameleoprosalzgitter.msi
Property(S): UILevel = 2
Property(S): ACTION = INSTALL
Property(S): ROOTDRIVE = C:\
Property(S): CostingComplete = 1
Property(S): SOURCEDIR = C:\Users\dominik\Desktop\
Property(S): SourcedirProduct = {88A78260-C44D-46C3-B4E9-CA5CB8B55E9C}
Property(S): OutOfDiskSpace = 0
Property(S): OutOfNoRbDiskSpace = 0
Property(S): PrimaryVolumeSpaceAvailable = 0
Property(S): PrimaryVolumeSpaceRequired = 0
Property(S): PrimaryVolumeSpaceRemaining = 0
Property(S): INSTALLLEVEL = 1
Property(S): ARPSYSTEMCOMPONENT = 1
Property(S): ProductToBeRegistered = 1
MSI (s) (D8:C8) [13:49:03:894]: Note: 1: 1707 
MSI (s) (D8:C8) [13:49:03:894]: Note: 1: 2205 2:  3: Error 
MSI (s) (D8:C8) [13:49:03:894]: Note: 1: 2228 2:  3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1707 
MSI (s) (D8:C8) [13:49:03:894]: Note: 1: 2205 2:  3: Error 
MSI (s) (D8:C8) [13:49:03:894]: Note: 1: 2228 2:  3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1709 
MSI (s) (D8:C8) [13:49:03:894]: Product: chameleoprosalzgitter -- Installation completed successfully.

MSI (s) (D8:C8) [13:49:03:894]: Das Produkt wurde durch Windows Installer installiert. Produktname: chameleoprosalzgitter. Produktversion: 1.0. Produktsprache: 1033. Hersteller: InstallAware Software Corporation. Erfolg- bzw. Fehlerstatus der Installation: 0.

MSI (s) (D8:C8) [13:49:03:909]: Deferring clean up of packages/files, if any exist
MSI (s) (D8:C8) [13:49:03:909]: MainEngineThread is returning 0
MSI (s) (D8:78) [13:49:03:909]: RESTART MANAGER: Session closed.
MSI (s) (D8:78) [13:49:03:909]: No System Restore sequence number for this installation.
=== Logging stopped: 15.11.2013  13:49:03 ===
MSI (s) (D8:78) [13:49:03:909]: User policy value 'DisableRollback' is 0
MSI (s) (D8:78) [13:49:03:909]: Machine policy value 'DisableRollback' is 0
MSI (s) (D8:78) [13:49:03:909]: Incrementing counter to disable shutdown. Counter after increment: 0
MSI (s) (D8:78) [13:49:03:909]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2 
MSI (s) (D8:78) [13:49:03:909]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2 
MSI (s) (D8:78) [13:49:03:909]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied.  Counter after decrement: -1
MSI (s) (D8:78) [13:49:03:909]: Restoring environment variables
MSI (s) (D8:78) [13:49:03:925]: Destroying RemoteAPI object.
MSI (s) (D8:74) [13:49:03:925]: Custom Action Manager thread ending.
MSI (c) (28:FC) [13:49:03:925]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied.  Counter after decrement: -1
MSI (c) (28:FC) [13:49:03:925]: MainEngineThread is returning 0
=== Verbose logging stopped: 15.11.2013  13:49:03 ===


Post Reply

Return to “Paketierung”

Who is online

Users browsing this forum: No registered users and 6 guests