Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does it mean when the MSI log file says "Note: 1: 2729"?

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
like image 420
Cheeso Avatar asked Jan 10 '11 17:01

Cheeso


People also ask

How do I use MSI logs?

Double-click Logging, and then click Enabled. In the Logging box, enter the options you want to log. The log file, Msi. log, appears in the Temp folder of the system volume.

Where are MSI logs stored?

The log file, Msi. log, appears in the Temp folder of the system volume. For more information about MSI logging, see Windows Help. To do this, search by using the phrase msi logging, and then select Managing options for computers through Group Policy.


1 Answers

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)

like image 77
Christopher Painter Avatar answered Dec 15 '22 14:12

Christopher Painter