2011-01-10 7 views
7

Ich lief eine Installation wie diese:Was bedeutet es, wenn die MSI-Protokolldatei "Note: 1: 2729" anzeigt?

msiexec /i Module.msi /l*v msilog.log 

Und in der resultierenden Logdatei, bekam ich ein paar Meldung wie: Note: 1: 2729. Was heißt das?

Gibt es einen Rosetta-Stein, um zu verstehen, was all diese Nachrichten in einer MSI-Protokolldatei bedeuten?

EDIT:
hier ein Beispiel schnipp der Protokolldatei msi:

MSI (c) (D4:8C) [12:16:44:332]: Note: 1: 2729 
MSI (c) (D4:8C) [12:16:44:332]: Note: 1: 2729 
MSI (c) (D4:8C) [12:16:44:332]: Note: 1: 2729 
MSI (c) (D4:8C) [12:16:44:332]: Note: 1: 2729 
MSI (c) (D4:8C) [12:16:44:332]: Note: 1: 2729 
MSI (c) (D4:8C) [12:16:44:332]: Note: 1: 2729 
MSI (c) (D4:8C) [12:16:44:332]: Note: 1: 2729 
MSI (c) (D4:8C) [12:16:44:348]: Note: 1: 2729 
MSI (c) (D4:8C) [12:16:44:348]: Note: 1: 2729 
MSI (c) (D4:8C) [12:16:44:348]: Note: 1: 2729 
MSI (c) (D4:8C) [12:16:44:348]: Note: 1: 2729 
MSI (c) (D4:8C) [12:16:44:348]: Note: 1: 2729 
MSI (c) (D4:8C) [12:16:44:348]: Note: 1: 2729 
MSI (c) (D4:8C) [12:16:44:348]: Note: 1: 2729 
MSI (c) (D4:8C) [12:16:44:348]: Note: 1: 2729 
MSI (c) (D4:8C) [12:16:44:348]: Note: 1: 2729 
MSI (c) (D4:8C) [12:16:44:348]: Note: 1: 2262 2: AdminProperties 3: -2147287038 
MSI (c) (D4:8C) [12:16:44:348]: Machine policy value 'DisableMsi' is 1 
MSI (c) (D4:8C) [12:16:44:348]: Machine policy value 'AlwaysInstallElevated' is 0 
MSI (c) (D4:8C) [12:16:44:348]: User policy value 'AlwaysInstallElevated' is 0 
+0

Können Sie eine Log-Datei oder einen Ausschnitt schreiben? –

Antwort

6

Kasse:

How to Interpret Windows Installer Logs

Windows Installer Error Messages

Q107675: ERRDOC: Windows Installer Error 2729

Code 2729 ist "Install Engine nicht initialisiert."

Es gibt sehr wenig darüber aus, aber mein bestes Lesen dieses Fehlercodes ist, dass die msiexec-Client-Seite versucht, die msiexec Server-Seite (Windows-Dienst) Spin und es läuft durch eine Schleife Protokollierung, die es nicht ist und lauf noch. Nach ein paar Iterationen ist es soweit und die Installation wird fortgesetzt. Sehen Sie sich das folgende Protokoll-Snippet an und sagen Sie mir, ob Ihr Protokoll ungefähr so ​​aussieht.

MSI (c) (A4:DC) [22:12:14:406]: Package name extracted from package path: 'msse.msi' 
MSI (c) (A4:DC) [22:12:14:406]: Package to be registered: 'msse.msi' 
MSI (c) (A4:DC) [22:12:14:406]: Note: 1: 2729 
MSI (c) (A4:DC) [22:12:14:437]: Note: 1: 2729 
MSI (c) (A4:DC) [22:12:14:437]: Note: 1: 2729 
MSI (c) (A4:DC) [22:12:14:437]: Note: 1: 2729 
MSI (c) (A4:DC) [22:12:14:453]: Note: 1: 2729 
MSI (c) (A4:DC) [22:12:14:453]: Note: 1: 2729 
MSI (c) (A4:DC) [22:12:14:453]: Note: 1: 2729 
MSI (c) (A4:DC) [22:12:14:453]: Note: 1: 2729 
MSI (c) (A4:DC) [22:12:14:453]: Note: 1: 2729 
MSI (c) (A4:DC) [22:12:14:453]: Note: 1: 2729 
MSI (c) (A4:DC) [22:12:14:453]: Note: 1: 2729 
MSI (c) (A4:DC) [22:12:14:453]: Note: 1: 2729 
MSI (c) (A4:DC) [22:12:14:453]: Note: 1: 2729 
MSI (c) (A4:DC) [22:12:14:453]: Note: 1: 2729 
MSI (c) (A4:DC) [22:12:14:453]: Note: 1: 2729 
MSI (c) (A4:DC) [22:12:14:453]: Note: 1: 2729 
MSI (c) (A4:DC) [22:12:14:453]: Note: 1: 2262 2: AdminProperties 3: -2147287038 
MSI (c) (A4:DC) [22:12:14:453]: TRANSFORMS property is now: 
MSI (c) (A4:DC) [22:12:14:453]: PROPERTY CHANGE: Adding VersionDatabase property. Its value is '200'. 

PS- Das (c) nach MSI bedeutet, dass der Protokolleintrag von der Clientseite stammt. Auch könnten Sie dieses Dienstprogramm finden hilfreich:

Wilogutl.exe (Windows)

+0

Ja, so sieht mein Protokoll auch aus. Lassen Sie mich diese Links überprüfen. – Cheeso

+0

+1, nettes Werkzeug, um die Protokolldateien zu interpretieren –