blur
blur

Reputation: 1

Method to build patches using MSI

I work in an application built upon Visual Studio 2010 and often make little fixes.

I need a method to send these fixes like a patch, a MSP file I guess, not the complete MSI file. How can I do this?? Is there an article or a link?

Upvotes: 0

Views: 564

Answers (1)

Alexey Ivanov
Alexey Ivanov

Reputation: 11838

Patch is a difference between two MSIs. So to create a patch, you would need the original MSI package and the updated one.

Read the following articles in the MSDN:

I also have a step-by-step instruction on how to create patches using WiX Toolset.

Upvotes: 2

Related Questions