Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to run an installer using the MSI command line option so that I can run it in debug mode and see the logs.

The logs that I am getting are quite large (near to 1 MB) and they are full of the following messages:

MSI (s) (F8:5C) [16:26:27:385]: Note: 1: 2360

I want to know if this is something to worry about? I have looked up the error code 2360 at Windows Installer Error Messages page on msdn and all it says that

Progress tick.

Is there something that I need to change in my installer?

I have recently added a CustomAction that makes use of System.Xml namespace. Could this be a cause?

share|improve this question

2 Answers

up vote 0 down vote accepted

I have found some information in the comments to article posted here

> Most times these "Note:" entires are just for information but sometimes they are precursors to other errors.

posted by

Robert Flaming Windows Installer Program Manager 1

I hope the messages that I am getting are in fact just for information.

share|improve this answer

It should not be because of Xml namespace. Please run this command in command prompt and provide the error details

msiexec /i "Path to msi" /l*v log.log

Once you get error, you can use WiLogUtl to read the log file. The tool is available with Windows SDK. Also the report will help you get exact error location

share|improve this answer
The msi install all right. The problem is that in the logs I get a large sequence of "MSI (s) (F8:5C) [16:26:27:385]: Note: 1: 2360" messages. This is from the log file. So these messages add up to make the log file size increase to 1MB. I want to know if this is something to worry about? Besides there are no other obvious errors in the logs file. – sttaq Sep 17 '12 at 9:01
Yes the log file size will be pretty big as /l*v will log everything that installer does. There are different options for log available. You can try those – Sunil Agarwal Sep 18 '12 at 4:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.