Pergunta

I ran an install like this:

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

And in the resulting logfile, I got a bunch of message like: Note: 1: 2729 . What does it mean?

Is there a rosetta-stone for understanding what all those messages mean in an msi log file?

EDIT:
here's an example snip of the msi log file:

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
Foi útil?

Solução

Checkout:

How to Interpret Windows Installer Logs

Windows Installer Error Messages

Q107675: ERRDOC: Windows Installer Error 2729

Code 2729 is "Install engine not initialized."

There's very little out on this but my best read of this error code is that the msiexec client side is trying to spin up the msiexec server side ( windows service ) and it's going through a loop logging that it isn't up and running yet. After a few iterations it's up and the install continues. Take a look at the following log snippet and tell me if this is pretty much what your log looks like.

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- The (c) after MSI means the log entry originated from client side. Also you might find this utility helpful:

Wilogutl.exe (Windows)

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top