Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
565 views
in Technique[技术] by (71.8m points)

wix - MSI installation log says: Note: 1: 2205 2: 3: Error

I created an MSI installer with WiX 3.8 and I get this error in the MSI log when installing it:

MSI (s) (A0:60) [19:14:59:510]: Note: 1: 2205 2:  3: Error
MSI (s) (A0:60) [19:14:59:510]: Note: 1: 2262 2: AdminProperties 3: -2147287038 

How can I fix this error?
Or maybe is it a known WiX/MSI issue that can be safely ignored?

My WiX script is extremely simple, it just installs a shell extension, so I have no idea where this error comes from.

From the GUI point of view, the installation finishes with no visible problem.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Error 2205 in MSI is Database: [2]. Table does not exist: [3].and in this case it looks like there is no Error table in the MSI file. 2262 is Stream does not exist: [2]. System error: [3]. so it seems to be looking for a missing stream, AdminProperties, and if there was more of the log shown the context might tell you what's going on, a custom action or whatever. -2147287038 is just "not found", so it's just another "can't find it" error.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...